python将文本中的空格替换为换行的方法
程序员文章站
2023-01-01 08:47:20
测试文本 jb51.txt
welcome to jb51.net
i love you very much
python代码
# -*- codi...
测试文本 jb51.txt
welcome to jb51.net
i love you very much
python代码
# -*- coding: utf-8 -*- ''' 遇到文中的空格就换行 ''' def delblankline(infile, outfile): infopen = open(infile, 'r',encoding="utf-8") outfopen = open(outfile, 'w',encoding="utf-8") db = infopen.read() outfopen.write(db.replace(' ','\n')) infopen.close() outfopen.close() delblankline("jb51.txt", "o3.txt")
效果图
主要就是用到了replace函数
python3 replace()方法
描述
replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。
语法
replace()方法语法:
str.replace(old, new[, max])
参数
old -- 将被替换的子字符串。
new -- 新字符串,用于替换old子字符串。
max -- 可选字符串, 替换不超过 max 次
返回值
返回字符串中的 old(旧字符串) 替换成 new(新字符串)后生成的新字符串,如果指定第三个参数max,则替换不超过 max 次。
实例
以下实例展示了replace()函数的使用方法:
#!/usr/bin/python3 str = "欢迎访问www.jb51.net" print ("旧地址:", str) print ("新地址:", str.replace("jb51.net", "jbzj.com")) str = "this is string example....wow!!!" print (str.replace("is", "was", 3))
以上实例输出结果如下:
旧地址: 欢迎访问www.jb51.net
新地址: 欢迎访问www.jbzj.com
thwas was string example....wow!!!
推荐阅读
-
python中从str中提取元素到list以及将list转换为str的方法
-
Python将文本去空格并保存到txt文件中的实例
-
python 去除txt文本中的空格、数字、特定字母等方法
-
python将文本中的空格替换为换行的方法
-
python中从str中提取元素到list以及将list转换为str的方法
-
python 去除txt文本中的空格、数字、特定字母等方法
-
python将文本中的空格替换为换行的方法
-
php如何将html中的br换行符转换为文本输入中的换行符
-
php如何将html中的br换行符转换为文本输入中的换行符_PHP教程
-
php如何将html中的br换行符转换为文本输入中的换行符_PHP教程