You are viewing a single comment's thread. Return to all comments →
import re, sys regex = re.findall(r"[\w.]+@\w+(?:\.\w+)+", sys.stdin.read()) print(*sorted(set(regex)), sep=';')
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 →