将内部字符串之前和之后替换为列表中的元素

发布于 2025-01-10 03:24:17 字数 450 浏览 0 评论 0原文

给定一个像这样的字符串:

strng = 'http://example.com/example/xyz?abc1234'

我想替换最后一个“/”和“?”之间的所有内容,即用列表中的元素替换“xyz”部分,例如:

lst = ['apple', 'banana', 'carrot']

这样我就可以这样做:

for element in list:
    print(strng)

并且它返回

http://example.com/example/apple?abc1234
http://example.com/example/banana?abc1234
http://example.com/example/carrot?abc1234

given a string like:

strng = 'http://example.com/example/xyz?abc1234'

I want to replace everything between the last "/" and "?", i.e. replace the "xyz" part, with elements from a list, like:

lst = ['apple', 'banana', 'carrot']

so that I can do like:

for element in list:
    print(strng)

and it returns

http://example.com/example/apple?abc1234
http://example.com/example/banana?abc1234
http://example.com/example/carrot?abc1234

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故事与诗 2025-01-17 03:24:17

您可以将 "xyz" 替换为占位符并使用 str.format

strng = strng.replace('/xyz?', '/{}?')
for item in lst:
    print(strng.format(item))

输出:

http://example.com/example/apple?abc1234
http://example.com/example/banana?abc1234
http://example.com/example/carrot?abc1234

You could replace "xyz" with a placeholder and use str.format:

strng = strng.replace('/xyz?', '/{}?')
for item in lst:
    print(strng.format(item))

Output:

http://example.com/example/apple?abc1234
http://example.com/example/banana?abc1234
http://example.com/example/carrot?abc1234
亢潮 2025-01-17 03:24:17
strng = 'http://example.com/example/xyz?abc1234'
lst = ['apple', 'banana', 'carrot']

for item in lst:
    newstring = strng.replace('xyz',item)
    print (newstring)
strng = 'http://example.com/example/xyz?abc1234'
lst = ['apple', 'banana', 'carrot']

for item in lst:
    newstring = strng.replace('xyz',item)
    print (newstring)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文