I know there a many ways to split a String, so that you'll get a StringList. But my problem is that I want to split every character of the string.
That means the following String:
'That is my Example String'
should be converted to an array/Stringlist or what so ever:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
T h a t i s m y E x a m p l e S t r i n g
In Perl or Java the delimiter field of the split-function is just be let empty like for example:
Perl: @string=split("",$string);
Java: String[] myStringArray=myString.split("");
What would be the best way for Delphi to manage this?