Hello All ,
I have a text box which should restrict any special characters entered but accept only A-Z ,a-z,0-9 , hyphen and underscore .
So on the "ON CHANGE " property of my text box I have written the following formula :
If(!(IsMatch(DataCardValue2.Text, "[A-Za-z0-9\_\-]")),Reset(Self))
So if any other special charecter is mentioned then the textbox is reset .
But its not working .
Also I have a label to indicate the warning on the "VISIBLE " I have written
(!(IsMatch(DataCardValue2.Text, "[A-Za-z0-9\_\-]"))&& IsBlank(DataCardValue2.Text))
Isblank to make sure the text can be blank as well .
Can someone help me on the following .

Report
All responses (
Answers (