Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I find the number of days between two Date objects?

share|improve this question

3 Answers

up vote 20 down vote accepted

Subtract the end date from the begining date:

endDate - beginDate 
share|improve this answer
think you mean subtract the begin date from the end date :) – Nader Nov 24 '11 at 0:30
6  
kind of anticlimactic eh? – Brig Dec 17 '11 at 4:45
3  
note: if you are using Wirble in irb (to colorize the output) the rational number will have a 1 concatenated to the end. yikes! you may want to use to_i to convert the result to an integer – jwal Jan 24 '12 at 18:07
irb(main):005:0> a = Date.parse("12/1/2010")
=> #<Date: 4911063/2,0,2299161>

irb(main):007:0> b = Date.parse("12/21/2010")
=> #<Date: 4911103/2,0,2299161>

irb(main):016:0> c = b.mjd - a.mjd
=> 20

This uses a Modified Julian Day Number.

From wikipedia:

The Julian date (JD) is the interval of time in days and fractions of a day since January 1, 4713 BC Greenwich noon, Julian proleptic calendar.

share|improve this answer

Try this:

num_days = later_date - earlier_date
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.