split strings into characters

Hi to all.
how can I split a string into single characters?
For instance:
"Hello" in
"H"
"e"
"l"
"l"
"o"
Thanks
how can I split a string into single characters?
For instance:
"Hello" in
"H"
"e"
"l"
"l"
"o"
Thanks
News, programmes, tutoriaux, forum sur les calculatrices TI, Casio, NumWorks... !
https://tiplanet.org/forum/
Define stringsplit()=
Prgm
"Hello"->str0
dim(str0)->b
For i,1,b
mid(str0,i,1)->ch
Disp ch
EndFor
EndPrgm