使用Python实现提取文本中的特定字符串的代码实现
时间: 2024-05-14 18:13:23 浏览: 86
python提取具有某种特定字符串的行数据方法
5星 · 资源好评率100%
以下是使用Python实现提取文本中的特定字符串的代码实现:
```python
import re
text = "Hello, my name is John. My email is john@example.com. Please contact me at your earliest convenience."
# 使用正则表达式提取邮箱
regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b'
emails = re.findall(regex, text)
print(emails)
# Output: ['john@example.com']
```
这段代码可以从给定的文本中提取出所有符合邮箱格式的字符串,输出为一个包含所有邮箱的列表。
阅读全文