用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实现字符串的替换的主要内容,如果未能解决你的问题,请参考以下文章

python字符串替换的2种有效方法

python(字符串操作)

python字符串操作

用python实现批量替换.doc文件文件内容

Python:re.sub()实现字符串替换

正则表达式高级替换,匹配后进行运算,然后使用结果替换,怎么实现?