一尘不染

替换字符串中的特定单词(Python)

python

我想替换字符串语句中的单词,例如:

What $noun$ is $verb$?

用实际名词/动词替换“ $ $”(含)中的字符的正则表达式是什么?


阅读 146

收藏
2020-12-20

共1个答案

一尘不染

您不需要为此使用正则表达式。我会做

str = "What $noun$ is $verb$?"
print str.replace("$noun$", "the heck")

仅在需要时使用正则表达式。通常比较慢。

2020-12-20