我正在使用ruby 1.9.3
,想Date or Time
从' mm/dd/yyyy
'日期format
字符串中获取对象
Time.zone.parse("12/22/2011")
这给了我 *** ArgumentError Exception: argument out of range
我正在使用ruby 1.9.3
,想Date or Time
从' mm/dd/yyyy
'日期format
字符串中获取对象
Time.zone.parse("12/22/2011")
这给了我 *** ArgumentError Exception: argument out of range
Answers:
如上所述,使用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 ')
您可以选择使用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
DateTime
。例如DateTime.strptime('23/03/2020 01:01 PM', '%d/%m/%Y %l:%M %p')