email regex python code example

Example 1: python email validation regex

r"(^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$)"

Example 2: python - regexp to find part of an email address

# Visit: https://regexr.com/
# and look at the Menu/Cheatsheet
import re

# Extract part of an email address
email = '[email protected]'

# Option 1
expr = '[a-z]+'
match = re.findall(expr, email)
name = match[0]
domain = f'{match[1]}.{match[2]}'

# Option 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]'

Example 4: validate email regex python

# From mailtrap.io
# Validate a complex address with hyphens, underscores, periods, starting and ending with alphanumeric characters, and can have subdomains in address

^[a-z]([w-]*[a-z]|[w-.]*[a-z]{2,}|[a-z])*@[a-z]([w-]*[a-z]|[w-.]*[a-z]{2,}|[a-z]){4,}?.[a-z]{2,}$

Tags:

Misc Example