Split String into Alphabets
显示 更早的评论
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 个评论
Jan
2011-11-2
This is a confusing question. Actually the characters are separated already: 'hello' and ['h', 'e', 'l', 'l', 'o'] are exactly the same.
采纳的回答
更多回答(1 个)
Andrei Bobrov
2011-11-2
input_text'
or in cell array
cellstr(input_text')
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!