vote up 3 vote down star

Take the two following examples:

Date.parse("02/20/2009")
Date.parse("02-20-2009")

In the first example, the order is assumed to be MM DD YYYY, but in the second example an error is raised because (I'm assuming) it tries to parse it as DD MM YYYY.

Why?

flag

2 Answers

vote up 9 vote down check

"02/20/2009" is the date representation only in *en_US* locale. "02-20-2009" is not, thus assumed to follow a standard. There are two popular standards, used most everywhere except for the US: DD-MM-YYYY or the ISO 8601, which is YYYY-MM-DD.

http://en.wikipedia.org/wiki/File:Date.png

link|flag
vote up 0 vote down

Different locales use different separators in their dates, and different orders for the parts (year, month, day). Ruby passes the date string to a number of functions that progressively attempt to parse it based on the separators.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.