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
|
168 Discussions
|
Please Login in order to post a comment
JavaScript
I made it so complex, even I got confused.
Corrected regex:
let criteria = /[\w._]+@[\w._]+[\w]/g;
Java 15
Python 3
import re pattern= re.compile(r'\b[\w.]+@[a-zA-Z0-9.]+\w\b') n=input() email=[] for i in range(eval(n)): text=input() add=pattern.findall(text) if add: email.extend(add) set_email=list(set(email)) set_email.sort() string=';'.join(set_email) print(string)