DateTime#strptime():strptime()是DateTime类方法,该方法使用给定的模板解析日期和时间的给定表示形式
用法:DateTime.strptime()
参数:日期时间值
返回:用给定的模板解析日期和时间的给定表示形式
示例1:
# Ruby code for DateTime.strptime() method
# loading library
require 'date'
# declaring DateTime value
date_a = DateTime.strptime('10-02-2015 05:05:06 PM', '%d-%m-%Y %I:%M:%S %p')
# declaring DateTime value
date_b = DateTime.strptime('2018 02 3 07 10 09 +7', '%Y %U %w %H %M %S %z')
# strptime method
puts "DateTime strptime form : #{date_a}\n\n"
puts "DateTime strptime form : #{date_b}\n\n"
输出:
DateTime strptime form : 2015-02-10T17:05:06+00:00 DateTime strptime form : 2018-01-17T07:10:09+07:00
示例2:
# Ruby code for DateTime.strptime() method
# Ruby code for DateTime.strptime() method
# loading library
require 'date'
# declaring DateTime value
date_a = DateTime.strptime('2010 04 6 04 05 06 +7', '%Y %U %w %H %M %S %z')
# declaring DateTime value
date_b = DateTime.strptime('-1', '%s')
# strptime method
puts "DateTime strptime form : #{date_a}\n\n"
puts "DateTime strptime form : #{date_b}\n\n"
输出:
DateTime strptime form : 2010-01-30T04:05:06+07:00 DateTime strptime form : 1969-12-31T23:59:59+00:00
相关用法
- Ruby DateTime sec()用法及代码示例
- Ruby DateTime jd()用法及代码示例
- Ruby DateTime now()用法及代码示例
- Ruby DateTime new()用法及代码示例
- Ruby DateTime second()用法及代码示例
- Ruby DateTime new_offset()用法及代码示例
- Ruby DateTime parse()用法及代码示例
- Ruby DateTime ordinal()用法及代码示例
- Ruby DateTime httpdate()用法及代码示例
- Ruby DateTime minute()用法及代码示例
- Ruby DateTime commercial()用法及代码示例
- Ruby DateTime rfc2822()用法及代码示例
- Ruby DateTime to_s()用法及代码示例
- Ruby DateTime to_time()用法及代码示例
- Ruby DateTime xmlschema()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | DateTime strptime() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。