How to split the name in to two cells
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have a cell matrix:
'56' 'mat find false' '89 mm' 'mat 96 kl'
I want to split:
- 'mat find false' --> 'mat' 'find false' (one cell to two cells)
- 'mat 96 kl' -->'mat' '96 kl'
desired Output:
'56' 'mat' 'find false' '89 mm' 'mat' '96 kl'
Many thanks in advance,
0 件のコメント
採用された回答
Cedric
2017 年 9 月 28 日
編集済み: Cedric
2017 年 9 月 28 日
Or regexp-based: if
C = {'56', 'mat find false', '89 mm', 'mat 96 kl'} ;
then
result = regexp(C, '(mat)?\s?(.*)', 'tokens', 'once') ;
result = [result{:}] ;
result(cellfun(@isempty, result)) = [] ;
outputs:
result =
1×6 cell array
'56' 'mat' 'find false' '89 mm' 'mat' '96 kl'
2 件のコメント
Jan
2017 年 9 月 28 日
As usual I mention that cellfun('isempty') is faster than cellfun(@isempty), because it does not call a Matlab function in a loop, but checks the emptiness inside the Mex function.
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!