[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

sort on European date

aidy

6/8/2009 3:44:00 PM

Hi,

date = ['15/10/1971', '16/10/1972', '12/12/1971']
real = date.map {|s| Date.parse s}
puts real.sort

Could anyone please tell me how I can parse the date in this sort with
a European format?

Thanks

Aidy
1 Answer

Rick DeNatale

6/8/2009 4:08:00 PM

0

On Mon, Jun 8, 2009 at 11:45 AM, aidy<aidy.lewis@googlemail.com> wrote:
> Hi,
>
> date = ['15/10/1971', '16/10/1972', '12/12/1971']
> real = date.map {|s| Date.parse s}
> puts real.sort
>
> Could anyone please tell me how I can parse the date in this sort with
> a European format?

real = date.map {|s| Date.strptime(s, "%d/%m/%Y")}


--
Rick DeNatale

Blog: http://talklikeaduck.denh...
Twitter: http://twitter.com/Ri...
WWR: http://www.workingwithrails.com/person/9021-ric...
LinkedIn: http://www.linkedin.com/in/ri...