python中findall()和finditer()的区别
小妮浅浅
2021-10-13 09:34:297618浏览 · 0收藏 · 0评论
1、findall()在输入字符串中查找所有匹配内容,如果匹配成功,则返回match列表对象。
如果匹配失败,则返回None。
2、finditer()在输入字符串中找到所有匹配内容,如果匹配成功,则返回可迭代的对象。
通过迭代对象每次都可以返回一个match对象,如果匹配失败,则返回None。
实例
import re p = r'[Jj]ava' text = 'I like Java and java' match_list = re.findall(p, text) ① print(match_list) match_iter = re.finditer(p, text) ② for m in match_iter: ③ print(m.group())
以上就是python中findall()和finditer()的区别,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
关注公众号,随时随地在线学习
相关文章