Windows(CR LF) to Unix (LF)
65 次查看(过去 30 天)
显示 更早的评论
I am using the matlab function "writetable" to creat a .txt file that I can open with Notepad++. However, Notepad++ opens the document as Windows (CR LF), but I would like it to automatically open it as Unix (LF). Is there a code I can use in matlab to fix this?
Thank you.
采纳的回答
per isakson
2019-3-14
编辑:per isakson
2019-3-14
You have a few options
- Open the file in Notepad++ and replace CRLF by LF as shown by the screen clip below.
- Use the solution, "Better control of the format", which I provided in my answer to your previous question. AFAIK: writetabel() doesn't let you control the new line character.
- Use writetable() and thereafter read the file, replace CRLF by LF, and overwrite the text file.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!