printf newline not working
9 次查看(过去 30 天)
显示 更早的评论
I am trying to write a newline to a .txt file in between each string in a set of strings. The code I currently have is:
fileID = fopen('hex.txt','w');
fprintf(fileID,'%s\r\n',hex_str);
fclose(fileID);
where hex_str is a 1x20 array of strings. I have also tried using \n instead of \r\n but that does not work either. I've also tried using 'wt' instead of 'w' in the permission field of fopen, but that did not help either. I think this may be an issue with using the built in notepad on my machine (Windows 7). I have downloaded notepad++, but how do I get matlab to use this software when writing instead of the builtin notepad?
0 个评论
回答(2 个)
MHN
2016-4-26
I could not understand the question. You have 20 words that you would like to put a new line after each of them, is it correct? could you upload your hex.txt and hex_str. Or at least an example of it.
0 个评论
Walter Roberson
2016-4-26
fileID = fopen('hex.txt','w');
fprintf(fileID,'%s\r\n',hex_str{:});
fclose(fileID);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Low-Level File I/O 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!