Ruby | Time rfc822 function
Time#rfc822() : rfc822() is a Time class method which returns the string which represents the time as date-time defined by RFC 822
Syntax: Time.rfc822()
Parameter: Time values
Return: the string which represents the time as date-time defined by RFC 822
Example #1 :
# Ruby code for Time.rfc822() method # loading library require 'time' # declaring time a = Time . new ( 2019 ) # declaring time b = Time . new ( 2019 , 10 ) # declaring time c = Time . new ( 2019 , 12 , 31 ) # Time puts "Time a : #{a}\n\n" puts "Time b : #{b}\n\n" puts "Time c : #{c}\n\n\n\n" # rfc822 form puts "Time a rfc822 form : #{a.rfc822}\n\n" puts "Time b rfc822 form : #{b.rfc822}\n\n" puts "Time c rfc822 form : #{c.rfc822}\n\n" |
chevron_right
filter_none
Output :
Time a : 2019-01-01 00:00:00 +0100 Time b : 2019-10-01 00:00:00 +0200 Time c : 2019-12-31 00:00:00 +0100 Time a rfc822 form : Tue, 01 Jan 2019 00:00:00 +0100 Time b rfc822 form : Tue, 01 Oct 2019 00:00:00 +0200 Time c rfc822 form : Tue, 31 Dec 2019 00:00:00 +0100
Example #2 :
# Ruby code for Time.rfc822() method # loading library require 'time' # declaring time a = Time .now # declaring time b = Time . new ( 1000 , 10 , 10 ) # declaring time c = Time . new ( 2020 , 12 ) # Time puts "Time a : #{a}\n\n" puts "Time b : #{b}\n\n" puts "Time c : #{c}\n\n\n\n" # rfc822 form puts "Time a rfc822 form : #{a.rfc822}\n\n" puts "Time b rfc822 form : #{b.rfc822}\n\n" puts "Time c rfc822 form : #{c.rfc822}\n\n" |
chevron_right
filter_none
Output :
Time a : 2019-08-27 04:07:37 +0200 Time b : 1000-10-10 00:00:00 +0053 Time c : 2020-12-01 00:00:00 +0100 Time a rfc822 form : Tue, 27 Aug 2019 04:07:37 +0200 Time b rfc822 form : Fri, 10 Oct 1000 00:00:00 +0053 Time c rfc822 form : Tue, 01 Dec 2020 00:00:00 +0100
Recommended Posts:
- Private Classes in Ruby
- Ruby | Matrix cofactor() function
- Ruby Integer odd? function with example
- Ruby Integer div() function with example
- Ruby | Symbol to_s function
- Ruby | Set replace() function
- Ruby | Set reset() function
- Ruby For Beginners
- Ruby | Array Concatenation using (+) function
- Ruby | at() function
- Ruby Float to_r() method with example
- Ruby | Keywords
- Ruby | Exception Class and its Methods
- Ruby | String inspect Method
- Ruby | Numeric imaginary() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.