I have this
"^(?!(11111|22222|33333|44444|55555|66666|77777|88888|99999|00000))([0-9]\d{8})"
regular expression in c# code and javascript works fine but in text tag of adobe echosign doesnt works anyone have anotherway to work on texttag of echosign?
By your last comment, you need a regex to validate a string of maximum length 9 containing digits only:
This will validate any string containing digits, with length at least 1 and not greater than 9.
If you want to avoid strings such as
098
(leading zeroes), use this instead:EDIT: If I understand your question well now, you can use this regex:
That is assuming that echosign can handle callbacks, if not, you can use this instead: