Ruby | DateTime httpdate() function Last Updated : 09 Jan, 2020 Comments Improve Suggest changes Like Article Like Report DateTime#httpdate() : httpdate() is a DateTime class method which returns a new DateTime object by parsing from a string according to some RFC 2616 format. Syntax: DateTime.httpdate() Parameter: DateTime values Return: A new DateTime object by parsing from a string according to some RFC 2616 format. Example #1 : Ruby # Ruby code for DateTime.httpdate() method # loading library require 'date' # declaring DateTime value date_a = DateTime.httpdate('Sat, 03 Feb 2001 04:05:06 GMT') # httpdate method puts "DateTime httpdate form : #{date_a}\n\n" Output : DateTime httpdate form : 2001-02-03T04:05:06+00:00 Example #2 : Ruby # Ruby code for DateTime.httpdate() method # loading library require 'date' # declaring DateTime value date_a = DateTime.httpdate('Tue, 01 Mar 2003 04:15:06 GMT') # httpdate method puts "DateTime httpdate form : #{date_a}\n\n" Output : DateTime httpdate form : 2003-03-01T04:15:06+00:00 Comment More infoAdvertise with us Next Article Ruby | DateTime jd() function M mayank5326 Follow Improve Article Tags : Ruby Ruby-Methods Ruby DateTime-class Similar Reads Ruby | DateTime parse() function DateTime#parse() : parse() is a DateTime class method which parses the given representation of date and time, and creates a DateTime object. Syntax: DateTime.parse() Parameter: DateTime values Return: given representation of date and time, and creates a DateTime object. Example #1 : Ruby # Ruby code 1 min read Ruby | DateTime jd() function DateTime#jd() : jd() is a DateTime class method which returns a DateTime object denoting the given chronological Julian day number. Syntax: DateTime.jd() Parameter: DateTime values Return: DateTime object denoting the given chronological Julian day number. Example #1 : Ruby # Ruby code for DateTime. 1 min read Ruby | DateTime new() function DateTime#new() : new() is a DateTime class method which returns a DateTime object denoting the given calendar date. Syntax: DateTime.new() Parameter: DateTime values Return: a DateTime object denoting the given calendar date. Example #1 : Ruby # Ruby code for DateTime.new() method # loading library 2 min read Ruby | DateTime minute() function DateTime#minute() : minute() is a DateTime class method which returns the minute value for the given DateTime object. Syntax: DateTime.minute() Parameter: DateTime values Return: the minute value for the given DateTime object. Example #1 : Ruby # Ruby code for DateTime.minute() method # loading libr 2 min read Ruby | DateTime hour() function DateTime#hour() : hour() is a DateTime class method which returns the hours i.e. from 0 to 23 from the given DateTime object. Syntax: DateTime.hour() Parameter: DateTime values Return: hours i.e. from 0 to 23 from the given DateTime object Example #1 : Ruby # Ruby code for DateTime.hour() method # l 2 min read Ruby | DateTime ordinal() function DateTime#ordinal() : ordinal() is a DateTime class method which returns a DateTime object denoting the given ordinal date. Syntax: DateTime.ordinal() Parameter: DateTime values Return: a DateTime object denoting the given ordinal date. Example #1 : Ruby # Ruby code for DateTime.ordinal() method # lo 1 min read Like