re.match()使用方法详解与实战应用
介绍: match()方法用于从字符串的开始位置进行匹配,如果起始位置匹配成功,则返回Match对象,否则返回None 语法: re.match(pattern,string,[flags]) pattern: 模式字符串 string:要匹配的字符串 flags:可选参数,比如re.I 不区分大小写 话不多说,直接上代码: import re #1.开始位置不匹配 res = re.match("ang","zhangsan5lisi") print(res) #输出结果:None #2. 匹配到结果 res = re.match("ang","angsan5lisi") prin
用户评论