一个文件内容:按条件将多行合并成一行

一个文件内容:按条件将多行合并成一行,第1张

好像就只是没换行了啊,按什么条件合并了?

存为merge.py,运行python merge.py,linux都有python

fin=open("file.txt")

fdata=fin.readlines()

fin.close()

fdata=''.join(fdata).replace("\n "," ")

print fdata

看不出file.txt中的缩进空格是几个,要是两个空格就改为

fdata=''.join(fdata).replace("\n ","")

工具/原料

Linux   电脑

方法/步骤

1、首先,在Linux下创建两个文件,文件名分别为file1、file2。

2、然后,用vim打开需要合并的文件,将光标移到到文件最后一行点击一下。

3、进行Vim命令模式,执行命令r file2将file2的内容复制到file1的后方。

4、文件成功合并完成。

连续两行合并:

用sed:

sed '$!Ns/\n//' filename

用awk:

awk '{if(NR%2==0) ORS="\n"else ORS=""print}' filename

linux文件中连续多行合并http://blog.uouo123.com/post/396.html

sed按条件多行合并为一行http://blog.uouo123.com/post/397.html


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8447182.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-16
下一篇 2023-04-16

发表评论

登录后才能评论

评论列表(0条)

保存