码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-03-31 14:22:56      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

python 字符串替换可以用2种方法实现:
1是用字符串本身的方法。
2用正则来替换字符串

 

下面用个例子来实验下:
a = ‘hello word‘
我把a字符串里的word替换为python
1用字符串本身的replace方法
a.replace(‘word‘,‘python‘)
输出的结果是hello python

2用正则表达式来完成替换:
import re
strinfo = re.compile(‘word‘)
b = strinfo.sub(‘python‘,a)
print b
输出的结果也是hello python

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

标签:

原文地址:http://www.cnblogs.com/perfei/p/5340814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!