How to get difference between two dates in Year/Month/Week/Day in an efficient way?
eg. difference between two dates is 1 Year, 2 Months, 3 Weeks, 4 Days.
Difference represents count of year(s), month(s), week(s) and day(s) between two dates.
|
|
|
This is actually quite tricky. A different total number of days can result in the same result. For example:
You may well want to subtract years until you get to the point where you've got two dates which are less than a year apart. Then subtract months until you get to the point where you've got two dates which are less than a month apart. Further confusion: subtracting (or adding) months is tricky when you might start with a date of "30th March" - what's a month earlier than that? Even further confusion (may not be relevant): even a day isn't always 24 hours. Daylight saving anyone? Even further confusion (almost certainly not relevant): even a minute isn't always 60 seconds. Leap seconds are highly confusing... I don't have the time to work out the exact right way of doing this right now - this answer is mostly to raise the fact that it's not nearly as simple as it might sound. EDIT: Unfortunately I'm not going to have enough time to answer this fully. I would suggest you start off by defining a struct representing a
I suggest you implement the + operator first, which should inform the Start with writing a whole slew of unit tests - initially "easy" cases, then move on to tricky ones involving leap years. I know the normal approach is to write one test at a time, but I'd personally brainstorm a bunch of them before you start any implementation work. Allow yourself a day to implement this properly. It's tricky stuff. Note that I've omitted weeks here - that value at least is easy, because it's always 7 days. So given a (positive) period, you'd have:
(I suggest you avoid even thinking about negative periods - make sure everything is positive, all the time.) |
|||||||||||||
|
|
Leap years and uneven months actually make this a non-trivial problem. I'm sure someone can come up with a more efficient way, but here's one option - approximate on the small side first and adjust up (untested):
|
|||||||||||||
|
|
For the correct difference calculation of Years/Months/Weeks, the Calendar of the CultureInfo must be considered:
The DateDiff class of the Time Period Library for .NET respects all these factors:
DateDiff also calculates the difference of Quarters. |
|||
|
|
What about using the For example, say:
Then:
==> 4 There are other |
|||||||
|
|
Subtract two PS > ([datetime]::today - [datetime]"2009-04-07") Days : 89 Hours : 0 Minutes : 0 Seconds : 0 Milliseconds : 0 Ticks : 76896000000000 TotalDays : 89 TotalHours : 2136 TotalMinutes : 128160 TotalSeconds : 7689600 TotalMilliseconds : 7689600000 Converting days into years or weeks is relatively easy (days in a year could be 365, 365.25, ... depending on context). Months is much harder, because without a base date you don't know which month lengths apply. Assuming you want to start with your base date, you can incrementally substract while counting first years (checking for leap years), then month lengths (indexing from startDate.Month), then weeks (remaining days divided by 7) and then days (remainder). There are a lot of edge cases to consider, e.g. 2005-03-01 is one year from 2004-03-01, and from 2004-02-29 depending on what you mean by "Year". |
|||||||||
|
|
If you subtract two instances of |
|||||
|
|
||||
|
|
|
Days: (endDate - startDate).Days
|
||||
|
|
|
Well, @Jon Skeet, if we're not worried about getting any more granular than days (and still rolling days into larger units rather than having a total day count), as per the OP, it's really not that difficult in C#. What makes date math so difficult is that the number of units in each composite unit often changes. Imagine if every 3rd gallon of gas was only 3 quarts, but each 12th was 7, except on Fridays, when... Luckily, dates are just a long ride through the greatest integer function. These crazy exceptions are maddening, unless you've gone all the way through the wackily-comprised unit, when it's not a big deal any more. If you're born on 12/25/1900, you're still EXACTLY 100 on 12/25/2000, regardless of the leap years or seconds or daylight savings periods you've been through. As soon as you've slogged through the percentages that make up the last composite unit, you're back to unity. You've added one, and get to start over. Which is just to say that if you're doing years to months to days, the only strangely comprised unit is the month (of days). If you need to borrow from the month value to handle a place where you're subtracting more days than you've got, you just need to know the number of days in the previous month. No other outliers matter. And C# gives that to you in System.DateTime.DaysInMonth(intYear, intMonth). (If your Now month is smaller than your Then month, there's no issue. Every year has 12 months.) And the same deal if we go more granular... you just need to know how many (small units) are in the last (composite unit). Once you're past, you get another integer value more of (composite unit). Then subtract how many small units you missed starting where you did Then and add back how many of those you went past the composite unit break-off with your Now. So here's what I've got from my first cut at subtracting two dates. It might work. Hopefully useful. (EDIT: Changed NewMonth > OldMonth check to NewMonth >= OldMonth, as we don't need to borrow one if the Months are the same (ditto for days). That is, Nov 11 2011 minus Nov 9 2010 was giving -1 year, 12 months, 2 days (ie, 2 days, but the royal we borrowed when royalty didn't need to.) (EDIT: Had to check for Month = Month when we needed to borrow days to subtract a dteThen.Day from dteNow.Day & dteNow.Day < dteThen.Day, as we had to subtract a year to get 11 months and the extra days. Okay, so there are a few outliers. ;^D I think I'm close now.)
|
||||
|
|
|
I came across this post while looking to solve a similar problem. I was trying to find the age of an animal in units of Years, Months, Weeks, and Days. Those values are then displayed in SpinEdits where the user can manually change the values to find/estimate a birth date. When my form was passed a birth date from a month with less than 31 days, the value calculated was 1 day off. I based my solution off of Ic's answer above. Main calculation method that is called after my form loads.
And then, in my spinEdit_EditValueChanged event handler, I calculate the new birth date starting from my startDateforCalc based on the values in the spin edits. (SpinEdits are constrained to only allow >=0)
I know its not the prettiest solution, but it seems to be working for me for all month lengths and years. |
||||
|
|
|
||||
|
|
|
Use the
|
|||
|
|
|
For years:
for days: return (endDate- startDate).Days; |
||||
|
|
Based on Joaquim's answer, but fixing the calculation when end date month is less than start date month, and adding code to handle end date before start date:
EDIT No that still doesn't work. It fails this test:
Expected:<24>. Actual:<12> |
||||
|
|
|
If you have to find the difference between originalDate and today’s date, Here is a reliable algorithm without so many condition checks.
I have used System.Data.Linq functions to do find the year, month and day differences. Please find c# code below
|
|||
|
|
|||||
|
Output:
|
|||
|
|