pipr.tools
Pipes
Clean Email Strip formatting from pasted email for clean plain text Clean AI Output Clean plain text from ChatGPT or AI output Decode & Format JWT Decode a JWT and pretty-print header and payload Word Frequency Count word frequency in text

Extract Emails

Extract email addresses from text

Extract
Input115 chars
Output0 chars

How it works

$ grep --pattern=[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}

Examples

Extract email addresses from a contact page for outreach

Usage
"Contact us at [email protected] or [email protected]
Perso..." | grep --pattern=[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}

Pull all email addresses from an email header

Usage
"From: [email protected]
To: [email protected]
CC: hiri..." | grep --pattern=[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}

Collect team contact emails from a project wiki page

Usage
"Team leads: [email protected], [email protected]
Backup: [email protected]..." | grep --pattern=[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}