用python实现字符串的替换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用python实现字符串的替换相关的知识,希望对你有一定的参考价值。
‘‘‘
字符串替换两种方法:
1、字符串本身的replace方法
2、用正则表达式完成替换
‘‘‘
import re
if __name__ == ‘__main__‘:
str1=str2 = "hello world,my my python world!"
#1
print str1.replace("world", "hahahaha")
#2
strinfo = re.compile(‘world‘)
b = strinfo.sub(‘hahahaha‘,str2)
print b
结果:
hello hahahaha,my my python hahahaha!
hello hahahaha,my my python hahahaha!
以上是关于用python实现字符串的替换的主要内容,如果未能解决你的问题,请参考以下文章