I need to split a String into an array of single character Strings.
Eg, splitting "cat" would give the array "c", "a", "t"
|
But if you need strings
Edit: which will return an empty first value. |
||||
|
|||||||||||||
|
|
Take a look at the String class's getChars() method. |
|||
|
|
a string are array of multichars. string foo = "baa"; foo[1] is "b" foo[2] is "a".. |
|||
|
|
|
Maybe you can use a for loop that goes through the String content and extract characters by characters using the Combined with an |
|||
|
|