首页 > 代码库 > python中,有关正则表达式re函数:compile、match、search、findall
python中,有关正则表达式re函数:compile、match、search、findall
1、全局匹配函数 re.compile(pattern=pattern,re.S).findall(text)函数:
compile 函数根据一个模式字符串和可选的标志参数生成一个正则表达式对象。该对象拥有一系列方法用于正则表达式匹配和替换。
import re string = ‘dsfdspythondsfdsjpythonfds‘ pattern = ‘.python‘ s = re.compile(pattern=pattern).findall(string) print(s)
2、re.match函数:(从第一字符开始匹配,不匹配则不成功,这也是match和search的区别)
match 尝试从字符串的起始位置匹配一个模式,如果不是起始位置匹配成功的话,match()就返回none。
函数语法: re.match(pattern, string, flags=0)
匹配结果:re.match匹配成功会返回一个对象,否则返回None。
用group(num=0)或groups()来获取匹配的结果
import re string = ‘刘德华 Andy Lau‘ pattern = ‘.*?\s‘ s = re.match(pattern=pattern,string=string) print(s.group())
3、re.search函数:
扫描整个字符串并返回第一个成功的匹配。
函数语法:re.search(pattern, string, flags=0)
参数如上
匹配结果:如果匹配成功则返回一个匹配的对象,否则返回None。
用group(num=0)或groups()来获取匹配的结果。
python中,有关正则表达式re函数:compile、match、search、findall
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。