【说站】python re.match函数的使用

2022-11-24 11:00:17 浏览数 (1)

python re.match函数的使用

1、从字符串的起始位置匹配正则表达式,re.match函数从string的起始位置开始匹配。

2、如果匹配失败则返回None,匹配成功则返回匹配到的字符串。

pattern是正则表达式,string是要匹配的字符串,flags是标志位。

re.match函数从string的起始位置开始匹配。

实例

代码语言:javascript复制
import re
x=re.match("[1-9]d*","123abd")
if x!=None:
    print(x.group())
else:
    print("none")
y=re.match("[1-9]d*","c123ad")
if y!=None:
    print(y.group())
else:
    print("none")
#输出结果:
123
none

以上就是python re.match函数的使用,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

0 人点赞