Anyone know an easy way to get the date of the first day in the week (monday here europe). I know the year and the week number? I'm going to do this in C#.
Thanks in advance.
|
Anyone know an easy way to get the date of the first day in the week (monday here europe). I know the year and the week number? I'm going to do this in C#. Thanks in advance. |
||||
|
NoteThe below answer uses the .NET Calendar rules. It does not promise ISO8601 conformance. See some of the other answers here when you need that. Week numbering is a mess, always try to find out what rules you need to follow first. The code below correctly puts the start of week 1, 2009 at 29-12-2008. The CalendarWeekRule probably should be a parameter. Note that the weekNum should be >= 1
|
|||||||||||||||||||
|
|
I had issues with the solution by @HenkHolterman even with the fix by @RobinAndersson. Reading up on the ISO 8601 standard resolves the issue nicely. Use the first Thursday as the target and not Monday. The code below will work for Week 53 of 2009 as well.
|
|||||||||||
|
|
I like the solution provided by Henk Holterman. But to be a little more culture independent, you have to get the first day of the week for the current culture ( it's not always monday ):
|
|||||||||||||||
|
|
The easiest way is probably to find the first Monday of the year, and then add the relevant number of weeks. Here's some sample code. It assumes a week number starting at 1, by the way:
|
|||||||
|
|
Personally I'd take advantage of the culture info to get the day of the week and loop down to the culture's first day of the week. I'm not sure if I'm explaining it properly, here's an example:
|
|||
|
|
|
using Fluent DateTime http://fluentdatetime.codeplex.com/
|
|||
|
|
|
According to ISO 8601:1988 that is used in Sweden the first week of the year is the first week that has at least four days within the new year. So if your week starts on a Monday the first Thursday any year is within the first week. You can DateAdd or DateDiff from that. |
||||
|
|
|
Assuming the week number starts at 1
This should give you the first day in any given week. I haven't done a lot of testing on it, but looks like it works. It's smaller solution than most other's I found on the web, so wanted to share. |
||||
|
I tried some codes above and some have small mistakes, when you try different years with different starting days of week you will see them, I took the code of Jon Skeet, fix it and it works, very simple code.
' weekDay, day you want Dim startOfYear As New DateTime(year, 1, 1) Dim startOfYearFixDay As Integer
|
|||
|
|
|
This one worked for me, it also have the advantage of expecting a cultureinfo as parameter to test the formula with different cultures. If empty, it gets the current culture info... valid values are like: "it", "en-us", "fr", ... ando so on. The trick is to subtract the week number of the first day of the year, that may be 1 to indicate that the first day is within the first week. Hope this helps.
|
|||
|
|
|
To convert in both directions, see here: Wikipedia article on ISO week dates |
|||
|
|
|
I improved a little on Thomas' solution with an override:
Otherwise the date was preceding by one week.. Thank you Thomas, great help. |
||||
|
|
|
The free Time Period Library for .NET includes the ISO 8601 conform class Week:
|
|||
|
|
|
I used one of the solutions but it gave me wrong results, simply because it counts Sunday as a first day of the week. I changed:
to:
and now it is working as a charm. |
|||||
|
|
The proposed solution is not complete - it only works for CalendarWeekRule.FirstFullWeek. Other types of week rules do not work. This can be seen using this test case:
|
|||
|
|
|
I have made a refined version of the proposed solution that is a simpler and parametrises the firstDayOfWeek:
|
|||
|
|
|
Week 1 is defined as being the week that starts on a Monday and contains the first Thursday of the year. |
|||||||
|