Given a date range, I need to know how many Mondays (or Tuesdays, Wednesdays, etc) are in that range.
I am currently working in C#.
|
|
|||
|
|
|
Try this:
|
||
|
|
|
It's fun to look at different algorithm's for calculating day of week, and @Gabe Hollombe's pointing to WP on the subject was a great idea (and I remember implementing Zeller's Congruence in COBOL about twenty years ago), but it was rather along the line of handing someone a blueprint of a clock when all they asked what time it was. In C#:
This of course does not evaluate the end date for "Mondayness", so if this was desired, make the for loop evaluate
|
|||
|
|
|
Here's some pseudocode:
Where Note that this algorithm assumes the date range is inclusive. If Translating to C# is left as an exercise for the reader. |
|||
|
|
|
|
Which language would you like to see an implementation in? You might find the Calculating the day of the week Wikipedia page helpful. |
||
|
|
|
|
Any particular language and therefore date format? If dates are represented as a count of days, then the difference between two values plus one (day), and divide by 7, is most of the answer. If both end dates are the day in question, add one. Edited: corrected 'modulo 7' to 'divide by 7' - thanks. And that is integer division. |
||||||||||
|
|
|
Since you're using C#, if you're using C#3.0, you can use LINQ. Assuming you have an Array/List/IQueryable etc that contains your dates as DateTime types:
Added: Not sure if you meant grouping them and counting them, but here's how to do that in LINQ as well:
|
||||||||
|
|
|
Add the smallest possible number to make the first day a Monday. Subtract the smallest possible number to make the last day a Monday. Calculate the difference in days and divide by 7. |
||
|
|
|
|
Convert the dates to Julian Day Number, then do a little bit of math. Since Mondays are zero mod 7, you could do the calculation like this:
|
||
|
|
|
|
I had a similar problem for a report. I needed the number of workdays between two dates. I could have cycled through the dates and counted but my discrete math training wouldn't let me. Here is a function I wrote in VBA to get the number of workdays between two dates. I'm sure .net has a similar WeekDay function.
|
||
|
|
|
|
||
|
|
|
|
I have had the same need today. I started with the cjm function since I don't understand the JonB function and since the Cyberherbalist function is not linear. I had have to correct
to
With the between function that return true if, starting from the start day, we meet first the dayImLookingFor before the endDay. I have done the between function by computing the number of day from startDay to the other two days:
|
|||
|
|