Other Resources:
Parsing the "To:" field from emails
What would be the correct regex pattern to extract email addresses from a string coming from an email form "To" line, that allows the addresses to be delimited by commas ",", semicolons ";", or spaces?
For example, the following "To" line contains 4 email addresses:
✍: Guest
![]()
Here is the regular expression to parse the "To:" line from emails to: Notes on this regular expression:
(?:To:)? - skip the field name 'To:' \s* - skip white spaces ([^@]+@[^;, ]+) - capture 1 email address
2013-01-30, 0👍, 0💬
Popular Posts:
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally...
How to write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...
All credit card numbers issued by American Express must start with 34 or 37 and have 15 digits. For ...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...