Python 正则表达式
Posted huanian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 正则表达式相关的知识,希望对你有一定的参考价值。
1.re.match函数
re.match 尝试从字符串的起始位置匹配一个模式,如果不是起始位置匹配成功的话,match()就返回none。
函数语法:
re.match(pattern, string, flags=0)
1 import re 2 3 ret = re.match("http","http://www.youdao.com/w/bytes/#keyfrom=dict2.top") #从开始位置匹配 4 print(ret.span()) #返回匹配范围 5 print(ret.group()) #返回匹配结果
以上是关于Python 正则表达式的主要内容,如果未能解决你的问题,请参考以下文章