DateTime#rfc822():rfc822()是DateTime類方法,該方法通過根據某些典型的RFC 2822格式從字符串進行解析來返回新的DateTime對象。
用法:DateTime.rfc822()
參數:日期時間值
返回:通過根據一些典型的RFC 2822格式從字符串進行解析來創建新的DateTime對象。
示例1:
# Ruby code for DateTime.rfc822() method
# loading library
require 'date'
# declaring DateTime value
date_b = DateTime.rfc822('Sat, 10 Mar 2015 03:08:02 +0400')
# rfc822 method
puts "DateTime rfc822 form : #{date_b}\n\n"
輸出:
DateTime rfc822 form : 2015-03-10T03:08:02+04:00
示例2:
# Ruby code for DateTime.rfc822() method
# loading library
require 'date'
# declaring DateTime value
date_a = DateTime.rfc822('Mon, 3 Feb 2001 04:05:06 +0700')
# rfc822 method
puts "DateTime rfc822 form : #{date_a}\n\n"
輸出:
DateTime rfc822 form : 2001-02-03T04:05:06+07:00
相關用法
- Ruby Time rfc822用法及代碼示例
- Ruby DateTime second()用法及代碼示例
- Ruby DateTime now()用法及代碼示例
- Ruby DateTime jd()用法及代碼示例
- Ruby DateTime sec()用法及代碼示例
- Ruby DateTime new()用法及代碼示例
- Ruby DateTime ordinal()用法及代碼示例
- Ruby DateTime parse()用法及代碼示例
- Ruby DateTime sec_fraction()用法及代碼示例
- Ruby DateTime zone()用法及代碼示例
- Ruby DateTime rfc2822()用法及代碼示例
- Ruby DateTime second_fraction()用法及代碼示例
- Ruby DateTime httpdate()用法及代碼示例
- Ruby DateTime hour()用法及代碼示例
- Ruby DateTime jisx0301()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | DateTime rfc822() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。