python match函数返回值,Python3中正则模块re.compile、re.match及re.search函数用法详解...

本文实例讲述了Python3中正则模块re.compile、re.match及re.search函数用法。分享给大家供大家参考,具体如下:

re模块 re.compile、re.match、 re.search

正则匹配的时候,第一个字符是 r,表示 raw string 原生字符,意在声明字符串中间的特殊字符不用转义。

比如表示 ‘\n',可以写 r'\n',或者不适用原生字符 ‘\n'。

推荐使用 re.match

re.compile() 函数

编译正则表达式模式,返回一个对象。可以把常用的正则表达式编译成正则表达式对象,方便后续调用及提高效率。

re.compile(pattern, flags=0)

pattern 指定编译时的表达式字符串

flags 编译标志位,用来修改正则表达式的匹配方式。支持 re.L|re.M 同时匹配

flags 标志位参数

re.I(re.IGNORECASE)

使匹配对大小写不敏感

re.L(re.LOCAL)

做本地化识别(locale-aware)匹配

re.M(re.MULTILINE)

多行匹配,影响 ^ 和 $

re.S(re.DOTALL)

使 . 匹配包括换行在内的所有字符

re.U(re.UNICODE)

根据Unicode字符集解析字符。这个标志影响 \w, \W, \b, \B.

re.X(re.VERBOSE)

该标志通过给予你更灵活的格式以便你将正则表达式写得更易于理解。

示例:

findall 返回的是一个 list 对象

['wang', 'WANG']

re.match() 函数

总是从字符串‘开头曲匹配',并返回匹配的字符串的 match 对象 。

re.match(pattern, string[, flags=0])

pattern 匹配模式,由 re.compile 获得

string 需要匹配的字符串

hello

b 失败

c 失败

hello

match 的方法和属性

返回结果:

group 0: hello world!

group 1: hello

group 2:

group 3: world!

groups: ('hello', ' ', 'world!')

start 0: 0 end 0: 12

start 1: 0 end 1: 5

start 2: 0 end 2: 6

pos 开始于: 0

endpos 结束于: 25

lastgroup 最后一个被捕获的分组的名字: last

lastindex 最后一个分组在文本中的索引: 3

string 匹配时候使用的文本: hello world! hello python

re 匹配时候使用的 Pattern 对象: re.compile('(?Phell\\w)(?P\\s)(?P.*ld!)')

span 返回分组匹配的 index (start(group),end(group)): (5, 6)

re.search 函数

对整个字符串进行搜索匹配,返回第一个匹配的字符串的 match 对象。

re.search(pattern, string[, flags=0])

pattern 匹配模式,由 re.compile 获得

string 需要匹配的字符串

注意 re.search 和 re.match 匹配的 str 的区别

打印结果:

group 0: hello world!

group 1: hello

group 2:

group 3: world!

groups: ('hello', ' ', 'world!')

start 0: 4 end 0: 16

start 1: 4 end 1: 9

start 2: 4 end 2: 10

pos 开始于: 0

endpos 结束于: 29

lastgroup 最后一个被捕获的分组的名字: last

lastindex 最后一个分组在文本中的索引: 3

string 匹配时候使用的文本: say hello world! hello python

re 匹配时候使用的 Pattern 对象: re.compile('(?Phell\\w)(?P\\s)(?P.*ld!)')

span 返回分组匹配的 index (start(group),end(group)): (9, 10)

希望本文所述对大家Python程序设计有所帮助。

原文链接:https://blog.csdn.net/cityzenoldwang/article/details/78395514

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值