python正则表达式match和search用法实例
程序员文章站
2022-05-12 15:17:58
...
本文实例讲述了python正则表达式match和search用法。分享给大家供大家参考。具体分析如下:
python提供了2中主要的正则表达式操作:re.match 和 re.search。
match :只从字符串的开始与正则表达式匹配,匹配成功返回matchobject,否则返回none;
search :将字符串的所有字串尝试与正则表达式匹配,如果所有的字串都没有匹配成功,返回none,否则返回matchobject;(re.search相当于perl中的默认行为)
import re def testsearchandmatch(): s1="helloworld, i am 30 !" w1 = "world" m1 = re.search(w1, s1) if m1: print("find : %s" % m1.group()) if re.match(w1, s1) == none: print("cannot match") w2 = "helloworld" m2 = re.match(w2, s1) if m2: print("match : %s" % m2.group()) testsearchandmatch() #find : world #cannot match #match : helloworld
希望本文所述对大家的Python程序设计有所帮助。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
推荐阅读
-
python正则表达式函数match()和search()的区别详解
-
Python爬虫之正则表达式基本用法实例分析
-
python简单的函数定义和用法实例
-
Python Datetime模块和Calendar模块用法实例分析
-
Python3中正则模块re.compile、re.match及re.search函数用法详解
-
js正则表达式test()和exec()用法实例
-
python类和继承用法实例
-
Python中正则表达式match()、search()函数及match()和search()的区别详解
-
python正则表达式函数match()和search()的区别
-
Python可变参数*args和**kwargs用法实例小结