Email Address Extractor
Pull every email address out of messy text, logs, or exported contact data β deduplicated and sorted.
About This Tool & Technical Logic
The extractor scans input text with a standards-based regular expression that matches the full RFC-5322 address shape in practical use: local part, @ symbol, and domain with a valid TLD.
It is designed for cleaning exported CRM data, mining contact lists from documents you own, or de-duplicating sign-up sheets. It deliberately skips obvious system noise like example.com addresses and image file names.
Pattern: /[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}/gi, then optional Set-based deduplication.
How to Use β Step by Step
- 1
Paste raw text
Any format works β paragraphs, logs, CSV exports. The extractor ignores everything that isn't an address.
- 2
Choose output options
Deduplication is usually wanted; pick comma separation if the output feeds a mail client's recipient field.
- 3
Copy the result
One click copies the clean list. Counts of found and unique addresses are shown above the output.
Frequently Asked Questions
No β it processes plain text only. Use our PDF Extract Text tool first, then paste the output here.