最佳答案
假设我想把 the blue dog and blue cat wore blue hats
改为 the gray dog and gray cat wore blue hats
。
使用 sed
,我可以完成以下工作:
$ echo 'the blue dog and blue cat wore blue hats' | sed 's/blue \(dog\|cat\)/gray \1/g'
如何在 Python 中进行类似的替换? 我试过:
>>> import re
>>> s = "the blue dog and blue cat wore blue hats"
>>> p = re.compile(r"blue (dog|cat)")
>>> p.sub('gray \1',s)
'the gray \x01 and gray \x01 wore blue hats'