📌  相关文章
📜  python - 正则表达式查找电子邮件地址的一部分 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:09.908000             🧑  作者: Mango

代码示例1
# Visit: https://regexr.com/
# and look at the Menu/Cheatsheet
import re

# Extract part of an email address
email = 'name@surname.com'

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

# Option 2
parts = email.split('@')