ruby DateTime从'mm / dd / yyyy'格式解析


72

我正在使用ruby 1.9.3,想Date or Time从' mm/dd/yyyy'日期format字符串中获取对象

Time.zone.parse("12/22/2011")

这给了我 *** ArgumentError Exception: argument out of range

Answers:


137
require 'Date'
my_date = Date.strptime("12/22/2011", "%m/%d/%Y")

1
如果字符串中有时间,请使用DateTime。例如DateTime.strptime('23/03/2020 01:01 PM', '%d/%m/%Y %l:%M %p')
Aryeh Beitz

18

如上所述,使用strptime方法,但请注意以下差异

Date.strptime("12/22/2011", "%m/%d/%Y") => Thu, 22 Dec 2011
DateTime.strptime("12/22/2011", "%m/%d/%Y") => Thu, 22 Dec 2011 00:00:00 +0000
Time.strptime("12/22/2011", "%m/%d/%Y") => 2011-12-22 00:00:00 +0000 

(+0000是时区信息,我现在在格林尼治标准时间-因此是+0000。上周,在时钟返回之前,我在BST +0100。我的application.rb包含config.time_zone ='London ')



5

您可以选择使用Time.strptime("01/28/2012", "%m/%d/%Y")它代替Time.parse吗?这样,您就可以更好地控制Ruby如何解析日期。

如果没有,则使用gems(例如ruby-american_date)使Ruby 1.9 Time.parse的行为类似于Ruby 1.8.7,但仅在绝对必要时才使用它。

1.9.3-p0 :002 > Time.parse '01/28/2012'
ArgumentError: argument out of range

1.9.3-p0 :003 > require 'american_date'
1.9.3-p0 :004 > Time.parse '01/28/2012'
 => 2012-01-28 00:00:00 +0000 

红宝石的另一件事1.9.3 to_time转换现在接受%d,%m,%Y作为字符串格式“ 29/10/2013”​​。to_time=> 2013-10-29 00:00:00 UTC
LHH
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.