Python使用正则表达式验证Url地址的例子

发布时间:2020-07-31编辑:脚本学堂
分享一个python编程中使用正则表达式验证Url的例子,学习下python语言中正则表达式的应用实例,有需要的朋友参考下。

python语言中,使用正则表达式验证url地址的格式正确性。

例子:
 

复制代码 代码示例:
#!/bin/python
#site: www.jb200.com
#
regex = re.compile(
        r'^(?:http|ftp)s?://' # http:// or https://
        r'(?:(?:[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?.)+(?:[A-Z]{2,6}.?|[A-Z0-9-]{2,}.?)|' #domain...
        r'localhost|' #localhost...
        r'd{1,3}.d{1,3}.d{1,3}.d{1,3})' # ...or ip
        r'(?::d+)?' # optional port
        r'(?:/?|[/?]S+)$', re.IGNORECASE)