Effacer les filtres
Effacer les filtres

Split String into Alphabets

1 vue (au cours des 30 derniers jours)
Nil
Nil le 2 Nov 2011
Hi All,
I want split each alphabet from input string like
input_text='helloworld'
Then i want to split each alphabet till the end of string like
'h' 'e' 'l' like wise
Pls provide me some direction..
Thanks in Advance !!!
  1 commentaire
Jan
Jan le 2 Nov 2011
This is a confusing question. Actually the characters are separated already: 'hello' and ['h', 'e', 'l', 'l', 'o'] are exactly the same.

Connectez-vous pour commenter.

Réponse acceptée

Amith Kamath
Amith Kamath le 2 Nov 2011
you could access each element of the string by looking at input_text(i) where i varies from 1 to size(input_text,2).
for example, input_text(1:3) will give you 'hel';
For more sophisticated tasks, you may want to look into cell variables for they give a lot more flexibility.

Plus de réponses (1)

Andrei Bobrov
Andrei Bobrov le 2 Nov 2011
input_text'
or in cell array
cellstr(input_text')

Catégories

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

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by