python字符串替换的小例子

发布时间:2019-12-09编辑:脚本学堂
python字符串替换的小例子,供大家学习参考。

pythonzifuchuan/ target=_blank class=infotextkey>python字符串替换的小例子,供大家学习参考。

复制代码 代码如下:

#单个字符替换
s = 'abcd'
a = ["a", "b", "c"]
b = ["c", "d", "e"]

import string
s.translate(string.maketrans(''.join(a),''.join(b)))
print s

#字符串,改善版
s = "hello, i'm mouren, hehe~~,hehe~~mourenmouren"
a = ["mouren", "hehe"]
b = ["mr", "hoho"]
import re
dic = dict(zip(a,b))
pattern = re.compile('(' + '|'.join(a) + ')')
s = pattern.sub(lambda a:dic[a.group()], s)
print s

您可能感兴趣的文章:
python字符串处理的方法介绍 
python操作字符串的代码  
通过实例学习python文件的内容查找和替换  
python格式化输出时间字符串函数strftime  
python 字符串截取的方法  
python 字符串连接的方法  
python 字符串替换的方法