如何按照以下示例从 TXT 文件创建 CSV 文件?谢谢。
TXT file:
This is line number one
This is line number two with extra words
This is line number three with even more words
Resulting CSV file:
Col#1 Col#2 Col#3 Col#4 Col#5 Col#6 Col#7 Col#8 Col#9
This is line number one
This is line number two with extra words
This is line number three with even more words
编辑:好吧,我的问题与以下内容不同,因此不重复:
https://askubuntu.com/questions/1214146/trying-to-create-a-csv-file-from-a-text-file-in-ubuntu
因为另一个问题是要求将每一行“组织”成“列”,而我的问题是将每个单词(由空格分隔)组织成一个新列。谢谢。
这取决于“单词”的含义以及“CSV 文件”的含义。
如果您只想将水平空格转换为逗号,则可以使用类似
或者
或者
如果你想要一个标题行(特别是如果它需要计算最大列数)和/或类似'NULL'的未填充字段,它会更复杂。