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:
A free online regular expression test tool that allows to try you regular expression pattern and see...
How to capture the Soso Spider entries from Web log file? Here are some Web log file entries: 127.0....
According to the IEEE 802 specification, a MAC address has 6 groups of 2 hexadecimal digits separate...
How to capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...
How to capture the Sogou web spider entries from Web log file? Here are some Web log file entries: 1...