导语:
本文主要介绍了关于python如何replace(替换)多个字符?的相关知识,包括python删除某个字符,以及python替换大文件这些编程知识,希望对大家有参考作用。
python中使用replace替换多个字符的方法:
1、使用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
2、在replace()函数中使用正则替换多个字符
//定义一个数组
let str = [[1],[2],[3],[4]];
//先转换成JSON字符串
let str2 = JSON.stringify(str);
//在对该字符串进行字符替换,在这里我们将所有中括号都替换成空
console.log(str2.replace(/\[|]/g,''));
//这样就完成了多个字符的替换
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python编码和解码有什么区别?11/11
- ♥ Python 内置函数列表11/25
- ♥ 如何在python中实现文件上传接口10/20
- ♥ Python yield 实现迭代器协议11/07
- ♥ centos如何在python中安装虚拟环境?12/19
- ♥ python中的sqrt是什么意思08/22
内容反馈