Skip to main content
Participant
February 16, 2023
Answered

Adobe Sign Field Validation for Address

  • February 16, 2023
  • 2 replies
  • 697 views

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!

This topic has been closed for replies.
Correct answer Harry306664486ank

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

2 replies

Harry306664486ankCorrect answer
Participant
June 23, 2023

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

Participant
June 26, 2023

This works like an absolute charm. Thank you SO much for your help!

Participant
May 17, 2023

Does anyone have any ideas? Thank you!