I am using Time.parse to create a Time object from a string.
For some reason
Time.parse("05-14-2009 19:00")
causes an argument our of range error, whereas
Time.parse("05-07-2009 19:00")
does not
Any ideas?
|
I am using Time.parse to create a Time object from a string. For some reason
causes an argument our of range error, whereas
does not Any ideas? |
|||
|
|
|
My guess would be that its expecting the second part of the string (the 14) to be the month. |
|||
|
|
|
If you know the format of the string use
http://www.ruby-doc.org/core-1.9/classes/Time.html#M000266 It will solve your problem and will probably be faster than Time.parse. EDIT: Looks like they took strptime from Time class, but it called Date.strptime anyway, if you are on Rails you can do
if you use pure ruby then you need:
See also: http://blog.nominet.org.uk/tech/2007/06/14/date-and-time-formating-issues-in-ruby-on-rails/ |
|||||||||||||||
|
|
It's beacuse of the heuristics of Time#parse. And it's due to anglo-american formats. With dashes '-' it expects mm-dd-yyyy, with slashes '/' it expects dd/mm/yyyy This behaivour CHANGES intentionally in 1.9. to accomplish eur,iso and jp Date standadrs |
|||||||||
|
|
You probably do not need it to solve this problem but I still recommend checking out the natural language date/time parser Chronic, it has saved me a lot of work a couple of times. |
|||
|
|
|
It is probably expecting Day-Month-Year format, so your first value is trying to specify the 5th day of the 14th month. |
|||
|
|