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


in reply to Re: Sorting my hashref by value for printing a popup_menu using CGI
in thread Sorting my hashref by value for printing a popup_menu using CGI

Roger,
Thanks for the reply but the array you create there will contain the sorted keys, not sorted values.
TA
jg
_____________________________________________________
"The man who grasps principles can successfully select his own methods.
The man who tries methods, ignoring principles, is sure to have trouble.
~ Ralph Waldo Emerson
  • Comment on Re: Re: Sorting my hashref by value for printing a popup_menu using CGI
  • Download Code

Replies are listed 'Best First'.
Re: Re: Re: Sorting my hashref by value for printing a popup_menu using CGI
by Roger (Parson) on Jan 14, 2004 at 00:45 UTC
    The perl built-in function keys will retrieve a list of hash keys, and the built-in function values will retrieve a list of hash values.
    sort keys %$namesref # change keys to values to generate sorted list of values sort values %$namesref