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/
标签:table idt com ongl python color 正则 htm regex
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/
标签:table idt com ongl python color 正则 htm regex
原文地址:https://www.cnblogs.com/break-dawnn/p/8460342.html