python 中实现文本中字符串的替换
2022/6/5 1:20:29
本文主要是介绍python 中实现文本中字符串的替换,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1、将文本中的所有d替换为QQ
[root@PC1 test3]# ls a.txt test.py [root@PC1 test3]# cat a.txt erg iuy dfg fdf er4 435 dft 34f cgd err [root@PC1 test3]# cat test.py #!/usr/bin/python in_file = open("a.txt", "r") out_file = open("result.txt", "w") lines = in_file.readlines() for i in lines: i = i.replace("d", "QQ") out_file.write(i) in_file.close() out_file.close() [root@PC1 test3]# python test.py [root@PC1 test3]# ls a.txt result.txt test.py [root@PC1 test3]# cat result.txt erg iuy QQfg fQQf er4 435 QQft 34f cgQQ err
2、仅替换第一个匹配的字符
[root@PC1 test3]# ls a.txt test.py [root@PC1 test3]# cat a.txt erg iuy dfg fdf er4 435 dft 34f cgd err [root@PC1 test3]# cat test.py #!/usr/bin/python in_file = open("a.txt", "r") out_file = open("result.txt", "w") lines = in_file.readlines() for i in lines: i = i.replace("d", "QQ", 1) out_file.write(i) in_file.close() out_file.close() [root@PC1 test3]# python test.py [root@PC1 test3]# ls a.txt result.txt test.py [root@PC1 test3]# cat result.txt erg iuy QQfg fdf er4 435 QQft 34f cgQQ err
这篇关于python 中实现文本中字符串的替换的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Python基础编程
- 2024-11-25Python编程基础:变量与类型
- 2024-11-25Python编程基础与实践
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南