本文实例讲述了Python3中正则模块re.compile、re.match及re.search函数用法。分享给大家供大家参考,具体如下:
re模块 re.compile、re.match、 re.search
import re str = 'hello world! hello python' pattern = re.compile(r'(?P<first>hell\w)(?P<symbol>\s)(?P<last>.*ld!)') # 分组,0 组是整个 hello world!, 1组 hello,2组 ld! match = re.match(pattern, str) print('group 0:', match.group(0)) # 匹配 0 组,整个字符串 print('group 1:', match.group(1)) # 匹配第一组,hello print('group 2:', match.group(2)) # 匹配第二组,空格 print('group 3:', match.group(3)) # 匹配第三组,ld! print('groups:', match.groups()) # groups 方法,返回一个包含所有分组匹配的元组 print('start 0:', match.start(0), 'end 0:', match.end(0)) # 整个匹配开始和结束的索引值 print('start 1:', match.start(1), 'end 1:', match.end(1)) # 第一组开始和结束的索引值 print('start 2:', match.start(1), 'end 2:', match.end(2)) # 第二组开始和结束的索引值 print('pos 开始于:', match.pos) print('endpos 结束于:', match.endpos) # string 的长度 print('lastgroup 最后一个被捕获的分组的名字:', match.lastgroup) print('lastindex 最后一个分组在文本中的索引:', match.lastindex) print('string 匹配时候使用的文本:', match.string) print('re 匹配时候使用的 Pattern 对象:', match.re) print('span 返回分组匹配的 index (start(group),end(group)):', match.span(2))
返回结果:
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('(?P<first>hell\\w)(?P<symbol>\\s)(?P<last>.*ld!)')
span 返回分组匹配的 index (start(group),end(group)): (5, 6)
re.search 函数
对整个字符串进行搜索匹配,返回第一个匹配的字符串的 match 对象。
re.search(pattern, string[, flags=0])
- pattern 匹配模式,由 re.compile 获得
- string 需要匹配的字符串
import re str = 'say hello world! hello python' pattern = re.compile(r'(?P<first>hell\w)(?P<symbol>\s)(?P<last>.*ld!)') # 分组,0 组是整个 hello world!, 1组 hello,2组 ld! search = re.search(pattern, str) print('group 0:', search.group(0)) # 匹配 0 组,整个字符串 print('group 1:', search.group(1)) # 匹配第一组,hello print('group 2:', search.group(2)) # 匹配第二组,空格 print('group 3:', search.group(3)) # 匹配第三组,ld! print('groups:', search.groups()) # groups 方法,返回一个包含所有分组匹配的元组 print('start 0:', search.start(0), 'end 0:', search.end(0)) # 整个匹配开始和结束的索引值 print('start 1:', search.start(1), 'end 1:', search.end(1)) # 第一组开始和结束的索引值 print('start 2:', search.start(1), 'end 2:', search.end(2)) # 第二组开始和结束的索引值 print('pos 开始于:', search.pos) print('endpos 结束于:', search.endpos) # string 的长度 print('lastgroup 最后一个被捕获的分组的名字:', search.lastgroup) print('lastindex 最后一个分组在文本中的索引:', search.lastindex) print('string 匹配时候使用的文本:', search.string) print('re 匹配时候使用的 Pattern 对象:', search.re) print('span 返回分组匹配的 index (start(group),end(group)):', search.span(2))
注意 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('(?P<first>hell\\w)(?P<symbol>\\s)(?P<last>.*ld!)')
span 返回分组匹配的 index (start(group),end(group)): (9, 10)
Python3中正则模块re.compile、re.match及re.search函数用法详解
- Author -
Citizen_Wang声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@