Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Sorting Dates Issue

by murugu (Curate)
on Aug 18, 2010 at 17:48 UTC ( [id://855867]=note: print w/replies, xml ) Need Help??


in reply to Sorting Dates Issue

This is off topic. I never used a date module before. Tried with Date::Simple
use Date::Simple qw(:all); my @dates = ('10/02/2004', '02/01/2004', '01/02/2004', '01/06/2004', ' +01/02/2005', '01/12/2004', '08/18/2010', '01/05/2005', '01/05/2004',' +01/05/2004'); @dates = map {$_->[0]} sort { &date($a->[1]) cmp &date($b->[1]) } map + {[$_, join '-',(split '/')[2,0,1]]} @dates; print $_,$/ for (@dates);

Regards,
Murugesan Kandasamy
use perl for(;;);

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://855867]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-03-19 04:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found