http://www.perlmonks.org?node_id=243317


in reply to Re: Re: Printing a hash in a specific order?
in thread Printing a hash in a specific order?

I was looking for a way to have the output automatically sorted [...] into a pre-determined format when it came out un-ordered.

that's sort then. It depends on what your "pre-determined format" means.(?) I was confused by your example because it dictated the keys to be output in some order (just as the example output displayed no generic order but some specific one) and that's of course impossible to be done generically unless you specify this order without enumarating it. So we end up with sort() or some Hash-tying module that actually stores order of insertion (as you've been pointed to).

--
http://fruiture.de
  • Comment on Re: Re: Re: Printing a hash in a specific order?