Validation Option | Signer Field's Data Format |
Numeric | Numbers 0-9 with no spaces. |
Alphabet | Letter A-Z in both upper and lower cases and spaces. |
Email | There is no specific validation for the email entered by the signer. The minimalistic entry of "@" and '"." is checked. Some special characters are also allowed. |
Regex | Data Format |
\d | Atleast one number. (eg. abc1d) |
^\d$ | Exactly one number (0-9) |
^\d{4}$ | Exactly four numbers.(0-9) |
^[0-9]+$ | Only numbers(0-9) |
^[a-z A-Z]+$ | Only alphabets with spaces (A-Z, a-z) |
^[2-9]\d{2}-\d{3}-\d{4}$ | Can be used for hyphen separated US phone numbers. YXX-XXX-XXXX, where Y is a number between 2-9 and X is a number between 0-9. eg: 922-414-2222) |
^\d{5}(?:[-\s]\d{4})?$ | Zip code regex that matches three types of zip codes. eg: 12345 or 12345 6789 or 12345-6789. Other values will not be allowed. |
^[A-Z]{5}[0-9]{4}[A-Z]{1}$ | Can be used if the recipient needs to add a PAN as the input, |
^[a-z A-Z]{1,10}$ | Alphabets which have minimum 1 letter and max 10 letters (with space). This will be useful if the sender wants to restrict the field length. |
^Trail$ | This will allow the signer to fill only the mentioned text. If either or option needs to be given to the signer, the words can be seperated with | Eg: ^Trail|Standrad|Enterprise$ - This is will give the signer the option to type the text from the given three options |