Hi @SimonPiquer
Thanks for explanation,
actually i have two validations that is
1. Character validation : This is done.
If(IsMatch(TextInput2.Text,Match.Letter,MatchOptions.Contains),Red,Blue)
2.Special character validation. It should allow only (Dot,Comma,SemiColon, Colon) only in-between data like(40.50 or 40:50, or 40,50) but not all special characters.
My Formula below for to alert if user enter special characters
If(Or(
Find("*",TextInput1.Text)>0,
Find("&",TextInput1.Text)>0,
EndsWith(TextInput1.Text,"*")=true,
EndsWith(TextInput1.Text,"&")=true),Red,Blue)
I am sure this hard coding is not right way to but, don`t know how to alert on special characters here
Here i am hard coding with each and every special character actually.
Condition on special character is
Not Allowed Special Character Symbols =(!`~@#$%^&*()_+")
Allowed= (Dot, SemiColon, Colon,Comma)
consecutive not allowed : **,%%,&&,((,))== etc
Is there any code for Special characters as well ..?
Kindly validate second condition validation as well.