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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。