本文简要介绍ruby语言中 DateTime.strptime
的用法。
用法
strptime([string='-4712-01-01T00:00:00+00:00'[, format='%FT%T%z'[ ,start=Date::ITALY]]]) → datetime
使用给定的模板解析给定的日期和时间表示,并创建一个 DateTime
对象。与 strftime 不同,strptime 不支持指定标志和宽度。
DateTime.strptime('2001-02-03T04:05:06+07:00', '%Y-%m-%dT%H:%M:%S%z')
#=> #<DateTime: 2001-02-03T04:05:06+07:00 ...>
DateTime.strptime('03-02-2001 04:05:06 PM', '%d-%m-%Y %I:%M:%S %p')
#=> #<DateTime: 2001-02-03T16:05:06+00:00 ...>
DateTime.strptime('2001-W05-6T04:05:06+07:00', '%G-W%V-%uT%H:%M:%S%z')
#=> #<DateTime: 2001-02-03T04:05:06+07:00 ...>
DateTime.strptime('2001 04 6 04 05 06 +7', '%Y %U %w %H %M %S %z')
#=> #<DateTime: 2001-02-03T04:05:06+07:00 ...>
DateTime.strptime('2001 05 6 04 05 06 +7', '%Y %W %u %H %M %S %z')
#=> #<DateTime: 2001-02-03T04:05:06+07:00 ...>
DateTime.strptime('-1', '%s')
#=> #<DateTime: 1969-12-31T23:59:59+00:00 ...>
DateTime.strptime('-1000', '%Q')
#=> #<DateTime: 1969-12-31T23:59:59+00:00 ...>
DateTime.strptime('sat3feb014pm+7', '%a%d%b%y%H%p%z')
#=> #<DateTime: 2001-02-03T16:00:00+07:00 ...>
另请参见 strptime(3) 和 strftime
。
相关用法
- Ruby DateTime.strftime用法及代码示例
- Ruby DateTime.second用法及代码示例
- Ruby DateTime.second_fraction用法及代码示例
- Ruby DateTime.sec用法及代码示例
- Ruby DateTime.sec_fraction用法及代码示例
- Ruby DateTime.hour用法及代码示例
- Ruby DateTime.jd用法及代码示例
- Ruby DateTime.zone用法及代码示例
- 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.jisx0301用法及代码示例
- Ruby DateTime.new_offset用法及代码示例
- Ruby DateTime.civil用法及代码示例
- Ruby DateTime.parse用法及代码示例
- Ruby DateTime.to_s用法及代码示例
- Ruby DateTime.min用法及代码示例
- Ruby DateTime.commercial用法及代码示例
- Ruby DateTime.offset用法及代码示例
- Ruby DateTime jisx0301()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 DateTime.strptime。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。