Effacer les filtres
Effacer les filtres

Separate strings w.r.t to semicolon

4 vues (au cours des 30 derniers jours)
shaz
shaz le 23 Oct 2012
i have a string like below in one cell(one row & one column)
a;b;c;d;f;e;g;t;y;s
i would like to separate in to individual cells with reference as ;

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 23 Oct 2012
x={'a;b;c;d;f;e;g;t;y;s'}
y=regexp(x,';','split')
y{:}

Plus de réponses (1)

Sachin Ganjare
Sachin Ganjare le 23 Oct 2012
str = 'a;b;c;d;f;e;g;t;y;s';
Out = strread(str,'%s','delimiter',';');
Hope it helps!!!
  2 commentaires
Jan
Jan le 27 Nov 2012
Unfortunately STRREAD is deprecated and will vanish in a future Matlab release. I cannot imagine, why removing such important functions is helpful for anything.
Walter Roberson
Walter Roberson le 27 Nov 2012
Out = textscan(str, '%s', 'delimiter', ';');

Connectez-vous pour commenter.

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by