忽略\ n(换行符)

时间:2012-06-25 12:24:17

标签: string matlab newline

我得到一个包含两行句子的字符串:

'hello this is my first.
program matlab'

我想在线更改要代表的句子:

'hello this is my first.program matlab'

我怎么能用matlab做到?

1 个答案:

答案 0 :(得分:8)

将所有\n替换为''

   myNewSt = strrep(mySt,sprintf('\n'),'');

例如,键入:

   strrep( sprintf('this is my \n string'),sprintf('\n'),'')