Email Extractor
Pull all email addresses out of a block of text.
3 unique addresses
- alice@example.com
- bob.smith@company.co.uk
- support+billing@startup.io
Addresses are deduplicated and lowercased. The match runs entirely in your browser.
About
Paste any text. Get every valid email address as a clean list. Useful for processing CSV exports, copying contacts out of HTML, or pulling addresses out of a mass forwarded message.
How to use
- Paste your text.
- See the unique email list.
- Copy the result.
FAQ
What's the regex used?+
A practical RFC-compliant pattern that catches normal addresses without going wild on edge cases. It won't match weird-but-valid addresses with quoted local parts, but those almost never appear in real data.
Are duplicates removed?+
Yes. The result is a deduplicated, sorted list.