Effacer les filtres
Effacer les filtres

How to split string with commas to columns?

15 vues (au cours des 30 derniers jours)
Kelly Kyriakou
Kelly Kyriakou le 28 Nov 2015
Commenté : Star Strider le 28 Nov 2015
How to split thsi string to columns with delimiter the comma? '10009_10383,195,1.73936,0.54069,0.579311,56,0,0,0,0,0,0,0,0,0,0,0,0,'
I tried strsplit but I receive the following error 'First input must be a string.'

Réponse acceptée

Star Strider
Star Strider le 28 Nov 2015
One possibility:
in = '10009_10383,195,1.73936,0.54069,0.579311,56,0,0,0,0,0,0,0,0,0,0,0,0,';
out = regexp(in, ',', 'split');
out = out(1:end-1)
out =
'10009_10383' '195' '1.73936' '0.54069' '0.579311' '56' '0' '0' '0' '0' '0' '0' '0' '0' '0' '0' '0' '0'
Note that ‘out’ is a (1x18) cell.
  2 commentaires
Kelly Kyriakou
Kelly Kyriakou le 28 Nov 2015
Thank you very much!
Star Strider
Star Strider le 28 Nov 2015
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings 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