Matlab,textscan:标点符号序列

时间:2015-03-26 13:50:00

标签: matlab delimiter textscan

我想使用分割字符串 的"" 作为分隔符,但我不能。我试过了:

temp = textscan('the first","the second','%s',2,'Delimiter','","');

但结果是:

  

临时{:}

     

ans ='第一个'

1 个答案:

答案 0 :(得分:0)

temp = textscan('the first","the second','%s',5,'Delimiter',{'","'});

我无法找到文档的相关部分,但是使用一组字符textscan使用每个字符作为单独的分隔符。检查temp = textscan('the first","the second','%s',4,'Delimiter','","');以了解分隔符如何在代码中插入。