in reply to Alphabetically sorting hashes
my %hash = ( one => 1, two => 2, three => 3 ); print foreach sort keys %hash; [download]
-- Casey