You are viewing a single comment's thread. Return to all comments →
import re def fun(s): result = re.fullmatch(r'[a-z0-9_-]+@[a-z0-9]+\.[a-z]{1,3}', s, re.I) return True if result else False
Seems like cookies are disabled on this browser, please enable them to open this website
Validating Email Addresses With a Filter
You are viewing a single comment's thread. Return to all comments →