在字符串的单元格数组上使用带有标记的regexp我有单元格的单元格数组。这是一个简化的例子:
S = {'string 1';'string 2';'string 3'};
res = regexp(S,'(\d)','tokens')
res =
{1x1 cell}
{1x1 cell}
{1x1 cell}
res{2}{1}
ans =
'2'
我知道在S中每个单元格字符串只有一个匹配项。如何将此输出转换为矢量化形式的字符串单元格数组?
答案 0 :(得分:12)