Open In App

Ruby | DateTime rfc2822() function

Last Updated : 09 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
DateTime#rfc2822() : rfc2822() is a DateTime class method which returns a new DateTime object by parsing from a string according to some typical RFC 3339 formats.
Syntax: DateTime.rfc2822() Parameter: DateTime values Return: A new DateTime object by parsing from a string according to some typical RFC 3339 formats.
Example #1 : Ruby
# Ruby code for DateTime.rfc2822() method

# loading library
require 'date'


# declaring DateTime value
date_b = DateTime.rfc2822('Sat, 10 Mar 2015 03:08:02 +0400')

#  rfc2822 method

puts "DateTime rfc2822 form : #{date_b}\n\n"
Output :
DateTime rfc2822 form : 2015-03-10T03:08:02+04:00
Example #2 : Ruby
# Ruby code for DateTime.rfc2822() method

# loading library
require 'date'

# declaring DateTime value
date_a = DateTime.rfc2822('Mon, 3 Feb 2001 04:05:06 +0700')

#  rfc2822 method
puts "DateTime rfc2822 form : #{date_a}\n\n"
Output :
DateTime rfc2822 form : 2001-02-03T04:05:06+07:00


Next Article

Similar Reads