Applies To:
All current versions of TPP
Summary:
Regular expressions provided as examples often only shows how to do one item.
Below is an example to use Regex for email addresses separated by a space, a comma, or a semi colon.
(([A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}(;|,|$)\s?))*
More Info:
This regex was created while using the following resources.
- https://stackoverflow.com/questions/9809357/regex-for-validating-multiple-e-mail-addresses
- https://regex101.com/
Comments
FYI: This does not work for email addresses that have a "." to the left of the "@".
e.g; your.name@domain.com