为什么我不能改变这个字符串? - Python

时间:2017-09-06 09:24:20

标签: python string

我有这个字符串:

test = "access-list [a-zA-Z0-9_/-]+ deny any\n"

我有这个变量:

regex = r"[a-zA-Z0-9_/-]+"

现在我想更改原始字符串,我想减去字符串中的变量值并插入另一个。所以我得到这样的东西。

test = "access-list new_value deny any\n"

我试图这样做,但它失败了:

test_replacement = test.replace(regex, "new_value")

0 个答案:

没有答案