在字符串中添加换行符(Matlab)

时间:2013-02-07 05:08:44

标签: string matlab char newline

如何在Matlab中为字符串添加新行字符以获取等效的Java代码?

String line;
line += "\n";

2 个答案:

答案 0 :(得分:5)

从以下链接

str = sprintf('test \n test')
or 
str = ['test ' char(10) ' 'test']
  1. strcat
  2. Inserting_Newlines_into_Disp_Warn_and_Error
  3. how to add a newline symbol into a string?

答案 1 :(得分:2)

“newline”取决于您使用的操作系统......最佳解决方案是

line = sprintf('%s\n', line);

这将迫使Matlab使用OS的“正确”回车。