pythonre.match函数的使用
1、从字符串的起始位置匹配正则表达式,re.match函数从string的起始位置开始匹配。
2、如果匹配失败则返回None,匹配成功则返回匹配到的字符串。
pattern是正则表达式,string是要匹配的字符串,flags是标志位。
re.match函数从string的起始位置开始匹配。
实例
import rex=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电脑。
以上是 pythonre.match函数的使用 的全部内容, 来源链接: utcz.com/z/545968.html