hello, I'm trying to make a REGEX to validate an entry of only numbers from 0 to 9 of length 11 characters, following the YYY route
Phone Number Field
regex(${IDEPRONUMBER},'[0-9]\d{11}')
And another regex for Only letters
regex(${IDEPRONAME},'^[A-Za-z]')
But I get error
I do not want to use a mask '9999999999', in case for number as mentioned in this development and errors can occur if someone has the regex can I share?