如何在Matlab中为字符串添加新行字符以获取等效的Java代码?
String line;
line += "\n";
答案 0 :(得分:5)
从以下链接
str = sprintf('test \n test')
or
str = ['test ' char(10) ' 'test']
答案 1 :(得分:2)
“newline”取决于您使用的操作系统......最佳解决方案是
line = sprintf('%s\n', line);
这将迫使Matlab使用OS的“正确”回车。