Sort on European date

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

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

ยทยทยท

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?

--
Rick DeNatale

Blog: http://talklikeaduck.denhaven2.com/
Twitter: http://twitter.com/RickDeNatale
WWR: http://www.workingwithrails.com/person/9021-rick-denatale
LinkedIn: http://www.linkedin.com/in/rickdenatale