re.compile()

Posted cxms

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了re.compile()相关的知识,希望对你有一定的参考价值。

1、定义

compile(pattern, flags=0) 

**   正则匹配规则: w*ow*

w* 表示匹配由大小写英文字bai母数字和下划线组成的0个或多个du字符
o 表示匹zhi配字符o
w*ow* 表示匹配含有o的字dao符串(不管o在首字母还是在尾字母还是在中间)

 

2、与findall()一起使用,返回一个列表

import re


def main():
    content = Hello, I am Jerry, from Chongqing, a montain city, nice to meet you……
    regex = re.compile(w*ow*)
    x = regex.findall(content)
    print(x)


if __name__ == __main__:
    main()
# [Hello, from, Chongqing, montain, to, you]

3、compile()与match()一起使用,可返回一个class、str、tuple。但是一定需要注意match(),从位置0开始匹配,匹配不到会返回None,返回None的时候就没有span/group属性了,并且与group使用,返回一个单词‘Hello’后匹配就会结束。

import re


def main():
    content = Hello, I am Jerry, from Chongqing, a montain city, nice to meet you……
    regex = re.compile(w*ow*)
    y = regex.match(content)
    print(y)
    print(type(y))
    print(y.group())
    print(y.span())


if __name__ == __main__:
    main()
# <_sre.SRE_Match object; span=(0, 5), match=Hello>
# <class _sre.SRE_Match>
# Hello
# (0, 5)

4、compile()与search()搭配使用, 返回的类型与match()差不多, 但是不同的是search(), 可以不从位置0开始匹配。但是匹配一个单词之后,匹配和match()一样,匹配就会结束。

import re


def main():
    content = Hello, I am Jerry, from Chongqing, a montain city, nice to meet you……
    regex = re.compile(w*ow*)
    z = regex.search(content)
    print(z)
    print(type(z))
    print(z.group())
    print(z.span())


if __name__ == __main__:
    main()
# <_sre.SRE_Match object; span=(0, 5), match=Hello>
# <class _sre.SRE_Match>
# Hello
# (0, 5)

 

以上是关于re.compile()的主要内容,如果未能解决你的问题,请参考以下文章

python的“re.compile”有啥作用?

python-24: re 模块 之三 re.compile

python 正则(re.compile()/re.findall())

错误:_sre.SRE_Pattern 不可迭代,我正在使用 re.compile() 通过比较起始值并获取此错误来获取字符串

正则表达式(re.compile/re.match/re.split用法)

python 正则表达式 re,compile速度慢 ,怎样可以使的re.compile的速度更快