当前位置:首页>维修大全>综合>

match函数如何返回多个匹配(match函数两个条件同时匹配)

match函数如何返回多个匹配(match函数两个条件同时匹配)

更新时间:2024-08-05 22:44:46

match函数如何返回多个匹配

match函数可以返回多个匹配项,可以使用group()方法返回每个匹配项。group()方法可以接受一个可选的参数表示想要获取的匹配项的索引,如果不指定参数,则默认返回整个匹配项。下面是一个例子:
```python
import re
pattern = r"d+"
string = "hello 123 world 456"
matches = re.findall(pattern, string)
for match in matches:
print(match)
```
输出:
```
123
456
```
在这个例子中,正则表达式"d+"可以匹配连续的数字,使用re.findall()函数可以返回所有匹配的数字,然后使用循环遍历每个匹配项并打印出来。

更多栏目