We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Detect the Email Addresses
Detect the Email Addresses
Sort by
recency
|
172 Discussions
|
Please Login in order to post a comment
Interesting challenge — I had to deal with something similar while cleaning up email data for a Shopify store I work with (opux.co.uk).
We were syncing subscriber lists from Klaviyo, and a few invalid or malformed addresses were breaking the automation flow. Using a regex pattern similar to the one in this problem helped filter those out before import.
Never realized how handy these small regex exercises can be in real-world marketing setups until then!
JS
\b <--- start and end of a "word" (or email) ---> \b
\w =
[a-zA-Z_]
[\w.]
: We don't need to scape dots inside those brackets.Enter your code here. Read input from STDIN. Print output to STDOUT
this works for me
import re import sys
html= sys.stdin.read()
pattern= r'\w*.?\w+@\w+.?\w*.?\w*.?\w+'
matches=re.findall(pattern,html)
output=sorted(set(email for email in matches))
print(';'.join(output))
JavaScript
I made it so complex, even I got confused.
Corrected regex:
let criteria = /[\w._]+@[\w._]+[\w]/g;