Python基础 之 Python3 正则表达式 11

简介: Python3 正则表达式

Python基础 之 Python3 正则表达式 11

Python3 正则表达式

findall

在字符串中找到正则表达式所匹配的所有子串,并返回一个列表,如果有多个匹配模式,则返回元组列表,如果没有找到匹配的,则返回空列表。

注意: match 和 search 是匹配一次 findall 匹配所有。

re.finditer

和 findall 类似,在字符串中找到正则表达式所匹配的所有子串,并把它们作为一个迭代器返回。

re.finditer(pattern, string, flags=0)

参数:

参数 描述
pattern 匹配的正则表达式
string 要匹配的字符串。
flags 标志位,用于控制正则表达式的匹配方式,如:是否区分大小写,多行匹配等等。参见:正则表达式修饰符 - 可选标志

实例

import re

it = re.finditer(r"\d+","12a32bc43jf3") 
for match in it: 
    print (match.group() )

输出结果:

12 
32 
43 
3
目录
相关文章
|
6月前
|
Python
python基础篇: python字符串方法都有哪些?你知道多少?
python基础篇: python字符串方法都有哪些?你知道多少?
56 3
|
Python
|
Python
|
Python
|
6月前
|
数据格式 Python
Python中的正则表达式:基础与应用
Python中的正则表达式:基础与应用
|
机器学习/深度学习 存储 XML
【 ②】Python基础(正则表达式)
【 ②】Python基础(正则表达式)
64 0
|
Python
|
Python
|
Python
|
Python
下一篇
无影云桌面