How do I create a Ruby date object from this string "DD-MM-YYYY"?
Alternatively |
||||
|
|
|
You can use Time#parse.
However, because Ruby could parse the date as "MM-DD-YYYY", the best way is to go with DateTime#strptime where you can specify the input format. |
||||
|
|
|
Because in the USA they get the dates backwards, it's important not to simply use Try this to be sure:
For other Also I always make sure I set my base timezone to |
|||
|
|