本文简要介绍ruby语言中 DateTime.parse
的用法。
用法
parse(string='-4712-01-01T00:00:00+00:00'[, comp=true[, start=Date::ITALY]], limit: 128) → datetime
解析给定的日期和时间表示,并创建一个 DateTime
对象。
此方法*不*用作验证器。如果输入字符串与有效格式不严格匹配,您可能会得到一个神秘的结果。应考虑尽可能使用“DateTime.strptime”而不是这种方法。
如果可选的第二个参数为真并且检测到的年份在“00” 到“99” 的范围内,则使其满。
DateTime.parse('2001-02-03T04:05:06+07:00')
#=> #<DateTime: 2001-02-03T04:05:06+07:00 ...>
DateTime.parse('20010203T040506+0700')
#=> #<DateTime: 2001-02-03T04:05:06+07:00 ...>
DateTime.parse('3rd Feb 2001 04:05:06 PM')
#=> #<DateTime: 2001-02-03T16:05:06+00:00 ...>
当字符串长度超过 limit
时,引发 ArgumentError
。您可以通过传递 ‘limit: nil’ 来停止此检查,但请注意,解析可能需要很长时间。
相关用法
- Ruby DateTime.hour用法及代码示例
- Ruby DateTime.jd用法及代码示例
- Ruby DateTime.zone用法及代码示例
- Ruby DateTime.second用法及代码示例
- Ruby DateTime.second_fraction用法及代码示例
- Ruby DateTime.sec用法及代码示例
- Ruby DateTime.xmlschema用法及代码示例
- Ruby DateTime.iso8601用法及代码示例
- Ruby DateTime.now用法及代码示例
- Ruby DateTime.ordinal用法及代码示例
- Ruby DateTime.rfc3339用法及代码示例
- Ruby DateTime.httpdate用法及代码示例
- Ruby DateTime.rfc2822用法及代码示例
- Ruby DateTime.minute用法及代码示例
- Ruby DateTime.strftime用法及代码示例
- Ruby DateTime.sec_fraction用法及代码示例
- Ruby DateTime.jisx0301用法及代码示例
- Ruby DateTime.new_offset用法及代码示例
- Ruby DateTime.civil用法及代码示例
- Ruby DateTime.to_s用法及代码示例
- Ruby DateTime.min用法及代码示例
- Ruby DateTime.commercial用法及代码示例
- Ruby DateTime.strptime用法及代码示例
- Ruby DateTime.offset用法及代码示例
- Ruby DateTime jisx0301()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 DateTime.parse。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。