如何替换除第一个事件之外的所有事件?

How to replace all occurences except the first one?

提问人:Ooker 提问时间:9/6/2015 最后编辑:Ooker 更新时间:10/27/2017 访问量:4968

问:

如何替换字符串中除第一个单词之外的所有重复单词?就是这些字符串

s='cat WORD dog WORD mouse WORD'
s1='cat1 WORD dog1 WORD'

将被替换为

s='cat WORD dog REPLACED mouse REPLACED'
s1='cat1 WORD dog1 REPLACED'

我无法向后替换字符串,因为我不知道该单词在每行上出现多少次。我确实想出了一个迂回的方法:

temp=s.replace('WORD','XXX',1)
temp1=temp.replace('WORD','REPLACED')
ss=temp1.replace('XXX','WORD')

但我想要一个更pythonic的方法。你有什么想法吗?

python-3.x 替换 find-occurrences

评论


答:

10赞 luoluo 9/6/2015 #1

将 与string.countrreplace

>>> def rreplace(s, old, new, occurrence):
...     li = s.rsplit(old, occurrence)
...     return new.join(li)
... 
>>> a
'cat word dog word mouse word'
>>> rreplace(a, 'word', 'xxx', a.count('word') - 1)
'cat word dog xxx mouse xxx'

评论

0赞 Ooker 9/6/2015
谢谢你。但是,实际上是一组单词,我用字典来替换它们,例如.这是行不通的wordfor i,j in dic.items(): line = rreplace(line,i,j,line.count(i)-1)
0赞 luoluo 9/6/2015
请添加完整的代码、输入、输出。究竟是什么?don't work