in reply to Hash to table with multiple attributes

You'll need something like:
foreach my $key ( sort keys %hash ) { ... }
See Sort function

Replies are listed 'Best First'.
Re^2: Hash to table with multiple attributes
by onelander (Sexton) on Jul 18, 2013 at 22:42 UTC
    Thanks for the tip. I will give it a shot.