我想使用分割字符串 的"" 作为分隔符,但我不能。我试过了:
temp = textscan('the first","the second','%s',2,'Delimiter','","');
但结果是:
临时{:}
ans ='第一个'
答案 0 :(得分:0)
temp = textscan('the first","the second','%s',5,'Delimiter',{'","'});
我无法找到文档的相关部分,但是使用一组字符textscan
使用每个字符作为单独的分隔符。检查temp = textscan('the first","the second','%s',4,'Delimiter','","');
以了解分隔符如何在代码中插入。