A
aidy
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
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