我得到一个包含两行句子的字符串:
'hello this is my first.
program matlab'
我想在线更改要代表的句子:
'hello this is my first.program matlab'
我怎么能用matlab做到?
答案 0 :(得分:8)
将所有\n
替换为''
myNewSt = strrep(mySt,sprintf('\n'),'');
例如,键入:
strrep( sprintf('this is my \n string'),sprintf('\n'),'')