How to split the name in to two cells

1 vue (au cours des 30 derniers jours)
Kanakaiah Jakkula
Kanakaiah Jakkula le 28 Sep 2017
Modifié(e) : Cedric le 28 Sep 2017
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,

Réponse acceptée

Cedric
Cedric le 28 Sep 2017
Modifié(e) : Cedric le 28 Sep 2017
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 commentaires
Jan
Jan le 28 Sep 2017
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 le 28 Sep 2017
Modifié(e) : Cedric le 28 Sep 2017
Thanks Jan!
I'll have to frame the following on my wall:

Connectez-vous pour commenter.

Plus de réponses (1)

Rik
Rik le 28 Sep 2017
Modifié(e) : Rik le 28 Sep 2017
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

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by