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!