in reply to Re: Hashes - sorting keys
in thread Hashes - sorting keys

You should explain it to him.

Replies are listed 'Best First'.
Re: Re: Re: Hashes - sorting keys
by davorg (Chancellor) on Jul 15, 2003 at 10:24 UTC

    What needs explaining?

    # get a sorted list of hash keys and store in array @temps my @temps = sort { $a <=> $b } keys %hash; # use a hash slice to get list of values in the same order # as the keys in @temps and store in array @fluors my @fluors = @hash{@temps};
    --
    <http://www.dave.org.uk>

    "The first rule of Perl club is you do not talk about Perl club."
    -- Chip Salzenberg

      Didn't you see that he seems to be hopelessly lost doing useless things?