Convert cell array of cells into cell array of strings in MATLAB

▼魔方 西西 提交于 2019-11-27 18:34:28

问题


Using regexp with tokens on cell array of strings I've got cell array of cells. Here is simplified example:

S = {'string 1';'string 2';'string 3'};
res = regexp(S,'(\d)','tokens')
res = 

    {1x1 cell}
    {1x1 cell}
    {1x1 cell}
res{2}{1}
ans = 
    '2'

I know I have only one match per cell string in S. How I can convert this output into cell arrays of strings in a vectorized form?


回答1:


The problem is even worse than you thought. Your output from REGEXP is actually a cell array of cell arrays of cell arrays of strings! Yeah, three levels! The following uses CELLFUN to get rid of the top two levels, leaving just a cell array of strings:

cellArrayOfStrings = cellfun(@(c) c{1},res);

However, you can also change your call to REGEXP to get rid of one level, and then use VERTCAT:

res = regexp(S,'(\d)','tokens','once');  %# Added the 'once' option
cellArrayOfStrings = vertcat(res{:});


来源:https://stackoverflow.com/questions/2624744/convert-cell-array-of-cells-into-cell-array-of-strings-in-matlab

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!