4

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

'hello this is my first.
program matlab'

我想将句子更改为在线表示:

'hello this is my first.program matlab'

我怎么能用 matlab 做到这一点?

4

1 回答 1

8

替换所有出现的\nto''

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

例如,键入:

   strrep( sprintf('this is my \n string'),sprintf('\n'),'')
于 2012-06-25T12:27:40.810 回答