Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

If you want to add validation to any of your fields, you need to know a little bit about Regex Validators. Once you know what kind of validation you want to add, you can click the "Show Advanced Settings" menu under the field you want to add validation to and put in your Regex Validation code. 

This documentation page is simply a compiled table of different validation codes that our users have put in place to ensure that data entered matches what they want it to. If you have a validation code that you've used that you think would be good to add here, please email us at support@timetap.com and let us know so we can add it here:

Regex CodePurposeValid ValuesInvalid Values
^\(\d{3}\) \d{3}-\d{4}$
To format phone numbers as (###) ###-####(888) 123-4567

8881234567

888-123-4567

888 123-4567

(888)1234567

(888)123-4567

^[a-z.0-9_-]{3,30}@abc\.lmno\.edu$

To format email addresses and make sure that:

  • The handle (before the @ sign) only has letters and numbers
  • Make sure the ending is to a specific address which is @abc.lmbo.edu

You can use this and replace the abc, lmno, and edu with the valid email address for you clients

alliebrown89@abc.lmno.edu

allie!brown89@abc.lmno.edu

alliebrown89@def.lmno.edu  

alliebrown89@abc.pqrs.edu  

alliebrown89@abc.lmno.com  

  • No labels