首页 > 技术文章 > 正则匹配URL地址

li1992 2019-02-26 16:27 原文

import re
u = "http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+"


def match_by_re(str):
    pattern = re.compile(u, re.S)
    res = pattern.findall(string=str)
    if res: return res[0]

 

推荐阅读