gpt4 book ai didi

python - 仅从 url 中提取域名,去掉路径 (Python)

转载 作者:行者123 更新时间:2023-11-30 22:53:30 24 4
gpt4 key购买 nike

我一直在尝试从网址列表中提取域名,以便 http://supremecosts.com/contact-us/将变成http://supremecosts.com 。我正在尝试找到一种干净的方法来适应各种 gtld 和 cctld。

最佳答案

您可以使用正则表达式来完成此操作,如下所示:

import re

text = 'http://supremecosts.com/contact-us/'

m = re.search('(https?:\/\/[^:\/\n]+)', text)
if m:
print(m.group(1))

工作中example

关于python - 仅从 url 中提取域名,去掉路径 (Python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38157567/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com