Help for this page
my @array = $string =~ /./g;
my @array = map /./g, $string;
my @array = split(//, $string);