You are viewing a single comment's thread. Return to all comments →
import re l=[] for _ in range(int(input())): n=input() m=re.findall(r"[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}",n) l.extend(m) print(";".join(sorted(set(l))))
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 →