CSV 行尾
CSV End of line
您好,我正在尝试将行尾代码放入 CSV 格式以将其导入 excel 我尝试将
\n, "\n", \r, "\r", \r\n, "\r\n" 但对我没有任何作用 我正在尝试将其导入 excel 2013 我的 csv 格式如下图
Medicine;1213;22;19\nMedicine (miscellaneous);1013;32;55\nEngineering;708;14;21
请帮忙。字段定界符工作正常但如何管理换行符我想这样写
Medicine | 1213 | 22 | 19
Medicine (miscellaneous) | 1013 | 32 | 55
Engineering | 708 | 14 |21
感谢您的帮助和建议
如果以上是您的文本文件。我发现只需按 enter 即可在文本文件中工作。
示例:
Medicine;1213;22;19
Medicine (miscellaneous);1013;32;55
Engineering;708;14;21
这对我有用。
在 Notepad++ 中,您只需执行以下查找和替换操作:
查找:
\n
替换:
\n
一定要在正则表达式模式下执行此操作,而不是常规模式。
\n 只是发给 Excel 的文本。我用 Word 将 \n 替换为特殊字符段落代码,然后保存为 txt 文件并导入到 Excel.
CSV 使用 RFC 4180. So the comment 不正确。大多数用例都是 csv 的 EOL 是 CR/LF.
在 Unix 中(Ubuntu 在我的例子中),当你在 cat -A /<someYourFilePath>
中打开文件时,你可以查看它
您好,我正在尝试将行尾代码放入 CSV 格式以将其导入 excel 我尝试将
\n, "\n", \r, "\r", \r\n, "\r\n" 但对我没有任何作用 我正在尝试将其导入 excel 2013 我的 csv 格式如下图
Medicine;1213;22;19\nMedicine (miscellaneous);1013;32;55\nEngineering;708;14;21
请帮忙。字段定界符工作正常但如何管理换行符我想这样写
Medicine | 1213 | 22 | 19
Medicine (miscellaneous) | 1013 | 32 | 55
Engineering | 708 | 14 |21
感谢您的帮助和建议
如果以上是您的文本文件。我发现只需按 enter 即可在文本文件中工作。
示例:
Medicine;1213;22;19
Medicine (miscellaneous);1013;32;55
Engineering;708;14;21
这对我有用。
在 Notepad++ 中,您只需执行以下查找和替换操作:
查找:
\n
替换:
\n
一定要在正则表达式模式下执行此操作,而不是常规模式。
\n 只是发给 Excel 的文本。我用 Word 将 \n 替换为特殊字符段落代码,然后保存为 txt 文件并导入到 Excel.
CSV 使用 RFC 4180. So the comment
在 Unix 中(Ubuntu 在我的例子中),当你在 cat -A /<someYourFilePath>