Python - Regexp untuk menemukan bagian dari alamat email

# 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('@')
Andrea Perlato