python regex email code example
Example 1: python email validation regex
r"(^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$)"
Example 2: find email address pytho
import re
line = "should we use regex more often? let me know at [email protected]"
match = re.search(r'[\w\.-]+@[\w\.-]+', line)
match.group(0)
'[email protected]'