I need to validate a number this is 8 digits and no more. I use this validation expression:
^[\d]{8}
However, I can still type in more than 8 digits and it returns a true. How can I change it to return a false if more than 8 digits are entered?
Thank you for your help!
SteveS
stevensinger123-tt@yahoo.com
^[\d]{8}
However, I can still type in more than 8 digits and it returns a true. How can I change it to return a false if more than 8 digits are entered?
Thank you for your help!
SteveS
stevensinger123-tt@yahoo.com