Python正则表达式去除邮箱@qq.com
时间: 2024-01-22 18:02:06 浏览: 193
python正则表达式(Regular Expression).rar
以下是Python正则表达式去除邮箱@qq.com的例子:
```python
import re
# 定义待处理的字符串
str = "contact@qq.com 1973536419@qq.com feedback@yiibai.com"
# 定义正则表达式
pattern = r'\b\w+@[a-z0-9]+\.[a-z]+\.?[a-z]+\b'
# 使用sub()函数将匹配到的邮箱替换为空字符串
result = re.sub(pattern, '', str)
# 输出结果
print(result) # 输出: 。
```
阅读全文