Date#cwyear() is a Date class method which returns the calendar week based year.
Syntax: Date.cwyear()
Parameter: Date values
Return: the calendar week based year.
Example #1 :
require 'date'
a = Date. new ( 2019 , 1 , 1 )
b = Date.jd( 2452004 )
c = Date.ordinal( 2019 , 12 )
puts "Date a : #{a}\n\n"
puts "Date b : #{b}\n\n"
puts "Date c : #{c}\n\n\n\n"
puts "Date a cwyear form : #{a.cwyear}\n\n"
puts "Date b cwyear form : #{b.cwyear}\n\n"
puts "Date c cwyear form : #{c.cwyear}\n\n"
|
Output :
Date a : 2019-01-01
Date b : 2001-04-04
Date c : 2019-01-12
Date a cwyear form : 2019
Date b cwyear form : 2001
Date c cwyear form : 2019
Example #2 :
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 : #{a}\n\n"
puts "Date b : #{b}\n\n"
puts "Date c : #{c}\n\n\n\n"
puts "Date a cwyear form : #{a.cwyear}\n\n"
puts "Date b cwyear form : #{b.cwyear}\n\n"
puts "Date c cwyear form : #{c.cwyear}\n\n"
|
Output :
Date a : 2019-01-01
Date b : 2019-12-03
Date c : 2019-02-02
Date a cwyear form : 2019
Date b cwyear form : 2019
Date c cwyear form : 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!
Last Updated :
09 Jan, 2020
Like Article
Save Article