in reply to split chars in string
split'[\w|\W]'; [download]
my @array; for(0..$#string){ my $i = $_; push @array,substr($string,$1,1); } [download]