码迷,mamicode.com
首页 > 编程语言 > 详细

Python验证Url地址的正则表达式

时间:2015-08-26 13:31:33      阅读:478      评论:0      收藏:0      [点我收藏+]

标签:

 

如下是django中做url验证的正则表达式:

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)

Python验证Url地址的正则表达式

标签:

原文地址:http://www.cnblogs.com/hackerl/p/4759940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!