Hi,
I am trying to get this regex to work. I know its working by testing it at regexr.com BUT when i put it on awareim, it is saying that's invalid.
\D0(\D\d){9}\D*$
- regex checks that the first digit is a 0
- that there should be 10 digits in total
-spaces and '(',')' are not counted
if you try it on regexr.com, it works.
The valid inputs are :
0123456789
0312345678
(03)12345678
03 12345678
I added the regex in the UIConfig.props with the following format:
TextInputMask3=Aus Phone#/\D0(\D\d){9}\D*$/
Has anyone tried using regex with aware?