You are viewing a single comment's thread. Return to all comments →
import re p = r"^[a-zA-Z]+\s<[a-zA-Z][\w\.\-]*@[a-zA-Z]+\.[a-zA-Z]{1,3}>$" [print(mail.group()) for mail in [re.match(p,input()) for _ in range(int(input()))] if mail]
Seems like cookies are disabled on this browser, please enable them to open this website
Validating and Parsing Email Addresses
You are viewing a single comment's thread. Return to all comments →