知行编程网知行编程网  2022-10-14 07:30 知行编程网 隐藏边栏  52 
文章评分 0 次,平均分 0.0
导语: 本文主要介绍了关于Python replace()函数:替换字符串中的某个字符的相关知识,包括hive替换函数replace,以及存储过程replace函数这些编程知识,希望对大家有参考作用。

下面我们将用一组例子来详细讲解python的替换问题。我相信通过例子你会很容易理解。一起来看看吧~

Python replace() 函数:替换字符串中的一个字符



基础了解——replace()函数语法:

str.replace(old, new[, max])

参数: old -- 要替换​​的子字符串。 new – 替换旧子字符串的新字符串。 max -- 可选字符串,替换不超过 max 次。

返回值:返回用new(新字符串)替换字符串中的旧(旧字符串)生成的新字符串。如果指定了第三个参数 max,则替换不会超过 max 次。



下面实例展示了replace()函数的使用方法:



实例演示:

#!/usr/bin/python
str = "this is string example....wow!!! this is really string";
print str.replace("is", "was");
print str.replace("is", "was", 3);



运行结果:

thwas was string example....wow!!! thwas was really string
 
thwas was string example....wow!!! thwas is really string


按照以上方式,大家都就可以去替换字符串啦~如需了解更多python实用知识,点击进入

本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

知行编程网
知行编程网 关注:1    粉丝:1
这个人很懒,什么都没写
扫一扫二维码分享