我有这样的事情:
text = 'This text is very very long.'
replace_words = ['very','word']
for word in replace_words:
text = text.replace('very','not very')
我想只替换第一个'非常'或选择哪个'非常'被覆盖。我在更大量的文本上这样做,所以我想控制重复单词的替换方式。
答案 0 :(得分:86)
text = text.replace("very", "not very", 1)
的
>>> help(str.replace)
Help on method_descriptor:
replace(...)
S.replace (old, new[, count]) -> string
Return a copy of string S with all occurrences of substring
old replaced by new. If the optional argument count is
given, only the first count occurrences are replaced.
答案 1 :(得分:26)
text = text.replace("very", "not very", 1)
第三个参数是您要替换的最大出现次数 来自the documentation for Python:
string.replace(s,old,new [,maxreplace])
返回字符串s的副本,其中所有出现的substring old都替换为new。如果给出了可选参数maxreplace,则替换第一个maxreplace事件。
答案 2 :(得分:3)
来自http://docs.python.org/release/2.5.2/lib/string-methods.html:
替换(旧,新[,计数])
返回字符串的副本,其中所有出现的substring old都替换为new。如果给出了可选参数count,则只有 第一次计数的事件被替换。
我没试过,但我相信它有效