您现在的位置是:课程教程文章

python re.match函数的使用

2023-12-13 23:24课程教程文章 人已围观

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

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

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

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

实例

importre
x=re.match("[1-9]\d*","123abd")
ifx!=None:
print(x.group())
else:
print("none")
y=re.match("[1-9]\d*","c123ad")
ify!=None:
print(y.group())
else:
print("none")
#输出结果:
123
none

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

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

课程教程:python re.match函数的使用

上一篇:python中re.findall函数的介绍

下一篇:没有了

站点信息

  • 文章统计篇文章