Date#asctime() is a Date class method which returns the string in asctime format. It is equivalent to strftime(‘%c’).the astronomical modified Julian day number.
Syntax: Date.asctime() Parameter: Date values Return: the string in asctime format. strftime(‘%c’).the astronomical modified Julian day number.
Example #1 :
Ruby 1=1
Output :
Date a : 2019-01-01
Date b : 2001-04-04
Date c : 2019-01-12
Date a asctime form : Tue Jan 1 00:00:00 2019
Date b asctime form : Wed Apr 4 00:00:00 2001
Date c asctime form : Sat Jan 12 00:00:00 2019
Example #2 :
Ruby
require 'date'
a = Date.parse( '2019-01-01' )
b = Date.strptime( '03-12-2019' , '%d-%m-%Y' )
c = Date.commercial( 2019 , 5 , 6 )
puts "Date a :
puts "Date b :
puts "Date c :
puts "Date a asctime form :
puts "Date b asctime form :
puts "Date c asctime form :
|
Output :
Date a : 2019-01-01
Date b : 2019-12-03
Date c : 2019-02-02
Date a asctime form : Tue Jan 1 00:00:00 2019
Date b asctime form : Tue Dec 3 00:00:00 2019
Date c asctime form : Sat Feb 2 00:00:00 2019
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!