in reply to table sorting of hashes
original array: a b c d e f g h i j k l m ... 2-d array: a b c d e f g h ... [download]
for $x (0..4) { for $y (0..4) { print $temp_array[$y][$x], "\t"; } print "\n"; } [download]