gpt4 book ai didi

python - 如何在 Python 中使用正则表达式 re.sub() 一个可选的匹配组?

转载 作者:太空狗 更新时间:2023-10-29 21:39:55 25 4
gpt4 key购买 nike

我的问题很简单。

我有一个 URL,有时它以特定字符结尾。如果它们存在,我想将它们添加到我的新 URL。

test1 = "url#123"
test2 = "url"

r = re.sub(r"url(#[0-9]+)?", r"new_url\1", test1)
# Expected result: "new_url#123"
# Actual result: "new_url#123"

r = re.sub(r"url(#[0-9]+)?", r"new_url\1", test2)
# Expected result: "new_url"
# Actual result: "error: unmatched group"

当然,我不能只做 re.sub("url", "new_url", test),因为例如它可能是 "url/123",在这种情况下我做不想修改。

最佳答案

您不能在替换字符串中使用可选的匹配组。

下面的方法怎么样?

>>> import re
>>> test1 = "url#123"
>>> test2 = "url"
>>> re.sub(r"url((?:#[0-9]+)?)", r"new_url\1", test1)
new_url#123
>>> re.sub(r"url((?:#[0-9]+)?)", r"new_url\1", test2)
new_url

顺便说一句,如果你使用 regex ,你可以使用可选的匹配组:

>>> import regex
>>> test1 = "url#123"
>>> test2 = "url"
>>> regex.sub(r"url(#[0-9]+)?", r"new_url\1", test1)
'new_url#123'
>>> regex.sub(r"url(#[0-9]+)?", r"new_url\1", test2)
'new_url'

关于python - 如何在 Python 中使用正则表达式 re.sub() 一个可选的匹配组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24514100/

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