在Python中,findall()
方法用于在字符串中查找所有匹配的子串。它返回一个包含所有匹配项的列表。以下是如何使用findall()
方法处理字符串的一些示例:
- 导入
re
模块(正则表达式模块):
import re
- 使用
findall()
方法查找所有匹配的数字:
text = "There are 10 cats, 5 dogs, and 3 parrots." pattern = r'\d+' result = re.findall(pattern, text) print(result) # 输出:['10', '5', '3']
在这个例子中,我们使用了正则表达式模式\d+
来匹配一个或多个数字。findall()
方法返回了一个包含所有匹配数字的列表。
- 使用
findall()
方法查找所有匹配的电子邮件地址:
text = "My email is john.doe@example.com, and my friend's email is jane_doe@example.com." pattern = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b' result = re.findall(pattern, text) print(result) # 输出:['john.doe@example.com', 'jane_doe@example.com']
在这个例子中,我们使用了正则表达式模式\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b
来匹配电子邮件地址。findall()
方法返回了一个包含所有匹配电子邮件地址的列表。
注意:在这些示例中,我们使用了原始字符串(在字符串前加r
),以避免在正则表达式中对反斜杠进行转义。