简介
re是python的正则模块
方法
re.complie(str)
参数:
str:正则模式
返回值:pattern
返回值作用:获取正则对象
作用:获取正则对象
pattern.findall(content)
参数:
content:内容对象
返回值:list
返回值意义:获取content内所有匹配pattern的数据,整合成list返回
作用:获取content内所有匹配pattern的数据,整合成list返回
pattern.finditer(content)
参数:
content对象
返回值:iterator
返回值作用:获取content内所有匹配字符串,包裹在迭代器内。
作用:获取content内所有匹配字符串,包裹在迭代器内。
for i in iterator:
i.group():将迭代器内数据作字符串输出
i.group("键值"):获取迭代器内分组数据值
i.groupdict():将每次迭代的数据的键值放入字典返回。