How can I sort dates in Perl?
Posted
by kiruthika
on Stack Overflow
See other posts from Stack Overflow
or by kiruthika
Published on 2010-03-22T10:40:13Z
Indexed on
2010/03/22
16:11 UTC
Read the original article
Hit count: 365
How can I sort the dates in Perl?
my @dates = ( "02/11/2009" , "20/12/2001" , "21/11/2010" );
I have above dates in my array . How can I sort those dates?
My date format is dd/mm/YYYY
.
© Stack Overflow or respective owner