• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Adobe Sign Field Validation for Address

Community Beginner ,
Feb 15, 2023 Feb 15, 2023

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!

TOPICS
Adobe Sign forms

Views

456

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

New Here , Jun 23, 2023 Jun 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

Votes

Translate

Translate
Community Beginner ,
May 17, 2023 May 17, 2023

Copy link to clipboard

Copied

Does anyone have any ideas? Thank you!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 23, 2023 Jun 23, 2023

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jun 26, 2023 Jun 26, 2023

Copy link to clipboard

Copied

LATEST

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines