You are viewing a single comment's thread. Return to all comments →
python 3
import re, sys p=sys.stdin.read() pat='[\w\.]+@(?:\w+\.)+\w+' emaillist=re.findall(pat,p) print(';'.join(sorted(list(set(emaillist)))))
Seems like cookies are disabled on this browser, please enable them to open this website
Detect the Email Addresses
You are viewing a single comment's thread. Return to all comments →
python 3