千家信息网

python正则表达式函数match()和search()有哪些区别

发表于:2024-11-17 作者:千家信息网编辑
千家信息网最后更新 2024年11月17日,这篇文章主要介绍"python正则表达式函数match()和search()有哪些区别",在日常操作中,相信很多人在python正则表达式函数match()和search()有哪些区别问题上存在疑惑,
千家信息网最后更新 2024年11月17日python正则表达式函数match()和search()有哪些区别

这篇文章主要介绍"python正则表达式函数match()和search()有哪些区别",在日常操作中,相信很多人在python正则表达式函数match()和search()有哪些区别问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"python正则表达式函数match()和search()有哪些区别"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

match()函数只检测RE是不是在string的开始位置匹配, search()会扫描整个string查找匹配, 也就是说match()只有在0位置匹配成功的话才有返回,如果不是开始位置匹配成功的话,match()就返回none

例如:

#! /usr/bin/env python# -*- coding=utf-8 -*-  import re  text= 'pythontab'm= re.match(r"\w+", text)if m:     print m.group(0)else:    print 'not match'

结果是:pythontab

而:

#! /usr/bin/env python# -*- coding=utf-8 -*-#  import re  text= '@pythontab'm= re.match(r"\w+", text)if m:     print m.group(0)else:    print 'not match'

结果是:not match

search()会扫描整个字符串并返回第一个成功的匹配

例如:

#! /usr/bin/env python# -*- coding=utf-8 -*-#  import re  text= 'pythontab'm= re.search(r"\w+", text)if m:     print m.group(0)else:    print 'not match'

结果是:pythontab

那这样呢:

#! /usr/bin/env python# -*- coding=utf-8 -*-#  import re  text= '@pythontab'm= re.search(r"\w+", text)if m:     print m.group(0)else:    print 'not match'

结果是:pythontab

到此,关于"python正则表达式函数match()和search()有哪些区别"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

0