1. 官方文档
https://docs.python.org/3/howto/regex.html
2. 重复次数
* | {0,} |
+ | {1,} |
? | {0,1} |
3. 实例
#网站域名匹配 url = ‘http://www.mafengwo.cn/gonglve/‘ p = re.compile(‘https?://www([^/][\S.])+/?‘) print(p.match(url).group()) #http://www.mafengwo.cn/
Posted break大蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[python3 - package] re 正则表达式相关的知识,希望对你有一定的参考价值。
1. 官方文档
https://docs.python.org/3/howto/regex.html
2. 重复次数
* | {0,} |
+ | {1,} |
? | {0,1} |
3. 实例
#网站域名匹配 url = ‘http://www.mafengwo.cn/gonglve/‘ p = re.compile(‘https?://www([^/][\S.])+/?‘) print(p.match(url).group()) #http://www.mafengwo.cn/
以上是关于[python3 - package] re 正则表达式的主要内容,如果未能解决你的问题,请参考以下文章
Python3正则匹配re.split,re.finditer及re.findall函数用法详解
Python3中正则模块re.compilere.match及re.search
Python3中正则模块re.compilere.match及re.search函数