第3章 第333节 Python 使用正则表达式提取字符串中的 URL

推荐给朋友

Python 使用正则表达式提取字符串中的 URL

给定一个字符串,里面包含 URL 地址,需要我们使用正则表达式来获取字符串的 URL。

实例

import re 

def Find(string): 
    # findall() 查找匹配正则表达式的字符串
    url = re.findall('https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+', string)
    return url 


string = 'Nowcoder 的网页地址为:https://www.nowcoder.com,Google 的网页地址为:https://www.google.com'
print("Urls: ", Find(string))

执行以上代码输出结果为:

Urls:  ['https://www.nowcoder.com', 'https://www.google.com']