Copy link to clipboard
Copied
Hello all,
I am trying to edit a field in an Adobe Sign form to disallow the @ character from being used. The intent of this field is to enter a mailing address, but customers are incorrectly entering their email addresses instead. I'm hoping that disallowing the @ character will solve this issue.
Is this something that can be done with a Regular Expression or Function? Thank you in advance for any help!
Try - ^[^@]+$ Select Regular Expression as the validation type and put in: ^[^@]+$
OR /^[^@]+$/
^ - Starts string
[^@] - is a negated character class that matches any character except "@"
+ - specifies that the preceding character class should occur one or more times
$ - end of string
// - General search for whatever is inbetween the slashes
Copy link to clipboard
Copied
Does anyone have any ideas? Thank you!
Copy link to clipboard
Copied
Try - ^[^@]+$ Select Regular Expression as the validation type and put in: ^[^@]+$
OR /^[^@]+$/
^ - Starts string
[^@] - is a negated character class that matches any character except "@"
+ - specifies that the preceding character class should occur one or more times
$ - end of string
// - General search for whatever is inbetween the slashes
Copy link to clipboard
Copied
This works like an absolute charm. Thank you SO much for your help!