This topic is locked
[SOLVED]

 Field validation

6/12/2012 9:45:55 AM
ASPRunnerPro General questions
T
tamersherif author

Hello,

In AspRunnerPro What expression should i use to validate a field to be only 6 numbers & only 6 not less or more?

Ex. 123456=True , 445566=True , 1234=False , 1234567=False

Sergey Kornilov admin 6/12/2012

Validate this field as a regular expression and use the following expression:

^[0-9]{6}$