Beefy Boxes and Bandwidth Generously Provided by pair Networks Joe
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: Sorting Dates

by josephjohn (Acolyte)
on Nov 24, 2005 at 05:51 UTC ( [id://511399]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re: Sorting Dates
in thread Sorting Dates

Thanks for the suggestion gjb. Does that sort the hash too. I need to sort the dates, find the last date, and perform some calculations later in the script. Also please let me know what qw() is used for.

Replies are listed 'Best First'.
Re^3: Sorting Dates
by gjb (Vicar) on Nov 24, 2005 at 06:11 UTC

    This doesn't sort the hash, it only converts the date from D/M/YYYY to YYYY/MM/DD so that it can be used as a key in your %datecount hash. This hash can be sorted the way you do it in your code fragment.

    As to qw:

    $ perldoc -f qw qw/STRING/ Generalized quotes. See "Regexp Quote-Like Operators" in perlop.
    It returns a list of words without doing interpolation on them. It is just a convenient way of writing:
    my @dates = ('5/7/2001' '3/10/2005' '1/1/1996' '2/1/1993');

    Hope this helps, -gjb-

Re^3: Sorting Dates
by secret (Beadle) on Nov 24, 2005 at 06:17 UTC

    >Does that sort the hash too

    You cannot sort a hash : a hash is by construction with no particular order. What you can do is sort the keys of a hash and print the corresponding values.

    When you do  foreach (keys %hash) you get the keys in an order that is undefined although always the same. But it will change if you add or remove keys, therefore if you need a specific order you should do  foreach ( sort { my sort function} keys %hash )

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://511399]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.