python正则表达式match、search使用实例

2022-04-29 00:00:00 python 实例 正则表达式

re.search 和 re.match
python提供了2中主要的正则表达式操作:re.match 和 re.search。
match :只从字符串的开始与正则表达式匹配,匹配成功返回matchobject,否则返回none;
search :将字符串的所有字串尝试与正则表达式匹配,如果所有的字串都没有匹配成功,返回none,否则返回matchobject;(re.search相当于perl中的默认行为)

"""
皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/31
功能描述:python正则表达式match、search使用实例
"""
import re


def testsearchandmatch():
    s1 = "hello pidancode.com, i am 30 !"
    w1 = "pidancode"
    m1 = re.search(w1, s1)
    if m1:
        print("find : %s" % m1.group())
    if re.match(w1, s1) is None:
        print("cannot match")
    w2 = "hello pidancode.com"
    m2 = re.match(w2, s1)
    if m2:
        print("match : %s" % m2.group())


testsearchandmatch()

代码输出如下:
find : pidancode
cannot match
match : hello pidancode.com

以上代码在python3.9环境下测试通过。

相关文章