regex to extract email address from string python code example
Example 1: extract email address using expression in django
import re
s = 'Hello from [email protected] to [email protected] about the meeting @2PM'
lst = re.findall('\S+@\S+', s)
print(lst)
Example 2: python - regexp to find part of an email address
import re
email = '[email protected]'
expr = '[a-z]+'
match = re.findall(expr, email)
name = match[0]
domain = f'{match[1]}.{match[2]}'
parts = email.split('@')
Example 3: 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]'