1
我只需要保留元素數組中第n個元素後面的元素。單元格數組文本操作
例子:
cell_in = {'test string no (1)';
'test string no (2)';
'test string no (3)'}
,我需要得到這樣的結果:
cell_out = {'no (1)';
'no (2)';
'no (3)'}
我已經試過這失敗的情況如下:
cell_out = cell_in{:}(13:end)
有沒有一種辦法解決這個問題,也許使用cellfun
?
歡迎堆棧溢出! –