Python解析字符串中的url

时间:2014-03-09 18:11:22

标签: python regex url

我想收到字符串中的网址。 比如我得到了:

"You got to see this link[http://some.link/you/have?to=see]"

我认为这些是无效的网址字符:"'()[]{}

1 个答案:

答案 0 :(得分:0)

找到URL的正则表达式如下所示:

'https?://[^\"\'\(\)\[\]\{\}]+'

基本上只是查找以“http”或“https”开头的字符串,然后是“://”,然后跟随的所有字符都不是"'()[]{}