How to split the name in to two cells

조회 수: 1 (최근 30일)
Kanakaiah Jakkula
Kanakaiah Jakkula 2017년 9월 28일
편집: Cedric 2017년 9월 28일
Hi,
I have a cell matrix:
'56' 'mat find false' '89 mm' 'mat 96 kl'
I want to split:
  1. 'mat find false' --> 'mat' 'find false' (one cell to two cells)
  2. 'mat 96 kl' -->'mat' '96 kl'
desired Output:
'56' 'mat' 'find false' '89 mm' 'mat' '96 kl'
Many thanks in advance,

채택된 답변

Cedric
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
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.
Cedric
Cedric 2017년 9월 28일
편집: Cedric 2017년 9월 28일
Thanks Jan!
I'll have to frame the following on my wall:

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Rik
Rik 2017년 9월 28일
편집: Rik 2017년 9월 28일
Easy to solve with looping through the list from the end:
for n=length(c):-1:1
idx=strfind(c{n},' ');
if ~isempty(idx)
c((n+1):(end+1))=c(n:end);
c{n}(idx(1):end)=[];
c{n+1}(1:idx(1))=[];
end
end

카테고리

Help CenterFile 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!

Translated by