gpt4 book ai didi

python - 从 python 中的字符串中删除除 URL 之外的所有内容

转载 作者:太空宇宙 更新时间:2023-11-03 18:34:03 27 4
gpt4 key购买 nike

我正在使用 python 和 BS4 从网站获取一系列链接,但我需要清理它们,所以我只获取字符串中的 URL。

我得到的链接如下所示:

javascript:changeChannel('http://some-server.com/with1234init.also', 20);

我需要它看起来像这样

http://some-server.com/with1234init.also

最佳答案

好吧,如果所有链接都像这样,您可以用一种非常简单的方法来完成:

s.split("'")[1]

例如:

>>>s="javascript:changeChannel('http://some-server.com/with1234init.also', 20);"
>>>s.split("'")
['javascript:changeChannel(',
'http://some-server.com/with1234init.also',
', 20);']

关于python - 从 python 中的字符串中删除除 URL 之外的所有内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21904968/

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