Calculate number of non-weekend days between two dates?

C

chrismo

Any date/time libraries out there (I can't seem to find anything in the
std libs) that handle calculations like number of non-weekend days
between two dates, etc.?
 
D

Dale Martenson

chrismo said:
Any date/time libraries out there (I can't seem to find anything in the
std libs) that handle calculations like number of non-weekend days
between two dates, etc.?

require 'date'

def weekdays(d1, d2)
count = 0
d1.upto(d2) do |date|
count += 1 if [1,2,3,4,5].include?(date.wday)
end
count
end

puts weekdays( Date.new(2006, 12, 1), Date.new(2007, 1, 16) )

A more useful twist might be to collect the weekdays and return an
array:

require 'date'

def weekdays(d1, d2)
_weekdays = []
d1.upto(d2) do |date|
_weekdays << date if [1,2,3,4,5].include?(date.wday)
end
_weekdays
end

puts weekdays( Date.new(2006, 12, 1), Date.new(2007, 1, 16) ).size
 
P

Phrogz

Dale said:
A more useful twist might be to collect the weekdays and return an
array:

How about:

require 'date'
d1 = Date.new( 2006, 12, 1 )
d2 = Date.new( 2007, 1, 15 )

WEEKDAY_NUMBERS = [1,2,3,4,5]
weekdays = (d1..d2).select{ |d| WEEKDAY_NUMBERS.include?( d.wday ) }
p weekdays.length
#=> 32
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,008
Latest member
obedient dusk

Latest Threads

Top