in reply to Re: How do I print a hash so that it represents actual table with column headers?
in thread How do I print a hash so that it represents actual table with column headers?

To get a slice from %$hash of keys @keys, use @$hash{@keys}, which can easily be derived from the more general form of @{...HASHREF...}{...keys-in-list-context...}.

-- Randal L. Schwartz, Perl hacker

  • Comment on RE: Answer: How do I print a hash so that it represents actual table with column headers?