下的文章就是对python(V1.0)在实际相关应用方案的具体应用,如果你对python(V1.0)在匹配HTML标签的具体应用方案的具体介绍,如果你对其感兴趣的话,你就可以点击我们的文章。
匹配HTML标签
- #coding:utf-8
- import re
- nStr = "<div>"
- p = re.compile('</?\w+[^>]*>',re.I)
- if p.match(nStr):
- print "exists"
输出
- else:
- print "not"
URL相关匹配EMAIL地址
- import re
- nStr = "hkebao@126.com"
- p = re.compile('^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$',re.S)
- if p.match(nStr):
- print "exists"
- else:
- print "not"
python(V1.0) 匹配URL
- import re
- nStr = "http://localhost"
- p = re.compile('^[a-zA-z]+://(\w+(-\w+)*)
(\.(\w+(-\w+)*))*(\?\S*)?$',re.S)- if p.match(nStr):
- print "exists"
- else:
- print "not"
以上的文章就是对python(V1.0 匹配HTML标签与匹配URL的实际相关应用方案的介绍。
【编辑推荐】
- Python复制文件的实际操作方案与代码详解
- Python矩阵转置中的二维数组的实际操作方案介绍
- Python socket编程在具体应用中前两个步骤的介绍
- Python Library中Condition的具体操作方案
- 在Python Library中Event具体实际操作方案