可能重复:
What is the best regular expression to check if a string is a valid URL
我想从字符串中找到http://www.google.com
或http://mail.yahoo.com.uk
等网址。实现这一目标的最佳方法是什么?
答案 0 :(得分:1)
>>> text = """I want to find url this "http://www.google.com" or "http://mail.yahoo.com.uk" from a string.
I tried different exprs but no one correct. Could anyone help me? Thanks
"""
>>> import re
>>> re.search( '(http://www\\.google\\.com)', text )
<_sre.SRE_Match object at 0x02183060>
>>> _.groups()
('http://www.google.com',)
>>> re.search( '(http://mail\\.yahoo\\.com\\.uk)', text )
<_sre.SRE_Match object at 0x021830A0>
>>> _.groups()
('http://mail.yahoo.com.uk',)
>>> re.findall( '(http://[^"\' ]+)', text )
['http://www.google.com"', 'http://mail.yahoo.com.uk"']
请注意,最后一个示例非常简化,不应在实践中使用。如果您愿意,可以使用Google来获取网址的正则表达式。