首页 > 代码库 > 替换句子中的多个不同的词—— python 实现
替换句子中的多个不同的词—— python 实现
对一个句子中的多处不同的词的替换,可以采用依次将句子中的每个词分别和词典进行匹配,匹配成功的进行替换来实现,可是这种方法直觉上耗时就很长,对于一个篇幅很长的文档,会花费很多的时间,这里介绍一种可以一次性替换句子中多处不同的词的方法,代码如下:
#!/usr/bin/env python
# coding=utf-8
import re
def multiple_replace(text, idict):
rx = re.compile(‘|‘.join(map(re.escape, idict)))
def one_xlat(match):
return idict[match.group(0)]
return rx.sub(one_xlat, text)
idict={‘3‘:‘2‘, ‘apples‘:‘peaches‘}
textBefore = ‘I bought 3 pears and 4 apples‘
textAfter= multiple_replace(textBefore,idict)
print (textBefore)
print (textAfter)
运行结果为:
I bought 3 pears and 4 apples
I bought 2 pears and 4 peaches
可见,multiple_replace() 函数的返回值也是一个字符串(句子),且一次性将 "3" 替换为 "2",将 "apples" 替换为 "peaches"
参考: http://blog.csdn.net/huludan/article/details/50925735
替换句子中的多个不同的词—— python 实现
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。