SplitCharacters(string)The function returns an array containing characters of a string. Example:
Res = SplitCharacters("hello")
DrawText(10, 10, Res[1]) ' will print "h"
DrawText(10, 30, Res[2]) ' will print "e"
DrawText(10, 50, Res[3]) ' will print "l"
DrawText(10, 70, Res[4]) ' will print "l"
DrawText(10, 90, Res[5]) ' will print "o"
DrawText(10, 110, Res[6]) ' will print nothing, Res[5] is null
See also: