Split String into Alphabets
Mostrar comentarios más antiguos
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 comentario
Jan
el 2 de Nov. de 2011
This is a confusing question. Actually the characters are separated already: 'hello' and ['h', 'e', 'l', 'l', 'o'] are exactly the same.
Respuesta aceptada
Más respuestas (1)
Andrei Bobrov
el 2 de Nov. de 2011
input_text'
or in cell array
cellstr(input_text')
Categorías
Más información sobre Characters and Strings en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!