我试图创建一个正则表达式,匹配字符串上的亚马逊链接,并将其替换为另一个字符串。我写的代码暂时不工作,因为它只是替换了网址的一部分。我想替换所有的网址。这是代码
import re
regex = r"https://amzn.to/[a-zA-Z0-9]+" + "|" + r"https://www.amazon.it/[a-zA-Z0-9]+"
string="https://amzn.to/3Ueforw"
string1="https://www.amazon.it/dp/B08F9LM1FB/?tag=seller050-21&psc=1"
string = re.sub(regex, "URL", string)
string1 = re.sub(regex, "URL", string1)
print(string)
print(string1) # here I want to URL too not "URL/other part of the url"
2条答案
按热度按时间hpcdzsge1#
我试着更新你的正则表达式,只是为了解释-我已经写了正则表达式,其中包括亚马逊域使用非贪婪与任何字符匹配与单行
rkue9o1l2#
将regex语句替换为以下内容:
正则表达式
https://www.amazon.it/.*
表示https://www.amazon.it/
之后的任何字符。演示:
输出: