Hi Mates
Is there any experts on Reg-Ex to identify characters/string from textbox
In shortly: When users enter alphabets in textbox then identify to alert or set border RED color to understand them invalid
Example : valid cases are below
20:30
40;30
50.60
but not 20:30abc or abc20:30 or 20:abc
when user enter alphabets then it should alert.
If(IsMatch(TextInput2.Text,"^[?!A-Za-z]*$"),Red,Green)
as of using above code but, its not alerting when users enter characters in textbox in-between.
your help would be highly apricated.