Extract Emails
Extract all email addresses from a block of text.
Extract Emails scans any block of text and finds all email addresses using regex. Paste an email thread, web page source, CSV, or any document and receive a clean deduplicated list of emails with a total count.
text
0 chars1 lines
emails foundREADY
0 chars1 lines
Related Tools
URLExtract URLs
Extract all URLs and links from a block of text.
.*Regex Tester
Test regular expressions against text with real-time match highlighting.
F/RFind and Replace
Find text and replace it with options for case sensitivity and regex.
WcWord Counter
Count words, characters, sentences, and lines in any text.
FAQ
- What pattern matches email addresses?
- The tool uses [a-zA-Z0-9._%+\-]+@[a-zA-Z0-9.\-]+\.[a-zA-Z]{2,} covering the local part, @ symbol, domain name, and a TLD of at least two characters.
- Are duplicate emails removed?
- Yes. Each unique address appears only once in the output even if it appears multiple times in the input. The count reflects unique addresses.
- Does it find emails inside HTML?
- Yes. The tool scans raw text including HTML source, CSV, and log files. Emails encoded as HTML entities will not match unless the HTML is decoded first.