in reply to Transposing an Array

Or:
my $str = 'ABCDEFG'; for (0..(length($str)-1)) { print substr($str,$_,1)."\n"; }
I just like substr :)