my @array=( ["def","456","$%^"], ["abc","123","!@#"], ["ghi","789","&*("] ); #code to sort the aoa here @array = sort { $a->[0] cmp $b->[0] } @array; for my $i ( 0 .. $#array ) { print "$array[$i][0]\n"; } __END__ abc def ghi