in reply to Re: Re: Sorting by the hash value
in thread Sorting by the hash value

Are you replying to the root node? My kludge is to get around the fact that CGI.pm has the hash ordering (which is no order) when you use the -lables argument. I often need to use labels and tie'ing is easier than sublassing CGI.pm.

As an aside, your code is overcomplicated.
print sort values %hash;


-Lee

"To be civilized is to deny one's nature."

Replies are listed 'Best First'.
Re: Re: Re: Re: Sorting by the hash value
by cybear (Monk) on Oct 25, 2002 at 15:17 UTC
    Cool. I didn't know that you could do that.

    - cybear