Tagged Questions
The dayofweek tag has no wiki summary.
9
votes
1answer
633 views
Correctness of Sakamoto's algorithm to find the day of week
I am using Sakamoto's algorithm to find out the day of week from a given date.
Can anybody tell me the correctness of this algorithm? I just want this from 2000 to 2099.
The algorithm from Wikipedia ...
8
votes
2answers
383 views
In .net, knowing the week number how can I get the weekdays date?
I want to create a function in C# which for a week number will return me the days, in that week.
For instance for week number 40, how can I get the days:
4/10, 5/10, 6/10, 7/10, 8/10, 9/10, 10/10.
...
7
votes
6answers
618 views
How to test if a DateTime is between 2 days of week (DayOfWeek)
In C#, given an arbitrary set of DayOfWeek end points (like, DayOfWeek.Friday and DayOfWeek.Sunday) how would one test if an arbitrary date falls between those two days, inclusive?
Example:
// ...
7
votes
6answers
189 views
A more condensed way of doing the following loop?
I have the following for-loop. It uses the values 0-6 form monday-sunday respectively.
Is there a more condensed way to do this? As opposed to listing out the if ($i=="day")
// $i = 0 is monday... ...
6
votes
3answers
2k views
Looping through the days of the week inside of C# TimeSpan Class
I'm trying to loop through EACH DAYof the WEEK between 2 time periods
DateTime start = new DateTime(2010, 1, 1);
DateTime end = new DateTime(2011, 12, 12);
I have managed to get the number of ...
6
votes
3answers
6k views
Math with Enums (e.g. DayOfWeek) in C#
Why is it that the following code won't work:
endDate.AddDays(7-endDate.DayOfWeek);
While this will:
endDate.AddDays(0-endDate.DayOfWeek + 7);
?
(By "won't work" I mean results in the following ...
5
votes
3answers
1k views
How to get localised day names in Delphi?
I'm using standard Delphi constants DayMonday, etc and I want to convert them to localized strings (eg "Lundi"). Is there a simple RTL or VCL call for this?
4
votes
2answers
97 views
Adjust Date to match saved day of week
I have a table that stores a StartDate and the name of the day of week that start date falls on. I don't know why, it is bad design but I didn't create it and can't change it. So of course, now we ...
4
votes
4answers
2k views
get nth weekday of month in C# [closed]
Possible Duplicate:
How do I determine if a given date is Nth weekday of the month?
How do i get the nth weekday of the month?
For ex.:
2nd Monday of "July 2010" = 07/12/2010.
Looking ...
4
votes
2answers
987 views
C#: Set initial DayOfWeek as Monday not Sunday
Is there a way to set the first DayOfWeek as Monday = 0 not Sunday?
(int)dateList[0].DayOfWeek == 0) // 0 = Sunday
4
votes
3answers
591 views
How to find nearest day of week in php?
How to find a speciefic nearest day of the week in PHP if initially I have a date string like: 07.05.2010? For example, I want to find the nearest Sunday (or any day of the week). How can I implement ...
4
votes
4answers
11k views
How to get first day of a given week number in Java
Let me explain myself. By knowing the week number and the year of a date:
Date curr = new Date();
Calendar cal = Calendar.getInstance();
cal.setTime(curr);
int nweek = cal.WEEK_OF_YEAR;
int year = ...
3
votes
2answers
66 views
Algorithm to find continuous days in a week
The user can select any number of week days from a list. An algorithm shall find the longest continuous group of selected days. The start day can be after the end day, if the group spans two weeks. If ...
3
votes
3answers
335 views
Can Calendar.GetDayOfWeek() return (DayOfWeek)7?
I'm reviewing some code and found this bit (rewritten):
if ((int)CultureInfo.CurrentCulture.Calendar.GetDayOfWeek(someDate) == 7) ...
I would think this condition always returns false since ...
3
votes
3answers
532 views
Javascript: How to get the day of week and the month of the year?
I don't know much about Javascript, and the other questions I found are related to operations on dates, not only getting the information as I need it.
Objective
I wish to get the date as ...
3
votes
3answers
358 views
Adding one week via java.util.Calendar.add() fails
I'm trying to iterate in my Java program over all weeks between two dates (the end date being today). First, I get the starting date:
Calendar start = Calendar.getInstance();
start = ...
3
votes
5answers
379 views
Best way to store weekly event in MySQL?
I have a table of weekly events that run on certain days of the week (e.g. MTWTh, MWF, etc.) and run on a certain time (e.g. 8am-5pm). What's the best way to store day of week information in MySQL to ...
3
votes
4answers
827 views
C#: Finding Out Which Monday Is The 3rd Monday Of The Month?
If I'm writing some C# code that runs through a year of dates (iterating by day) and want something special to happen every 3rd Monday of the month, how can I accomplish this?
In other words, what is ...
3
votes
5answers
1k views
Order by day_of_week in MySQL
How can I order the mysql result by varchar column that contains day of week name?
Note that MONDAY should goes first, not SUNDAY.
2
votes
1answer
41 views
PHP echo all days of week (strftime)
I was wondering if there is a way to use the locale in strftime to echo all days of the week, regardless of date. To use as sort of headings or titles and rather than using constants and loading the ...
2
votes
1answer
82 views
Python/Django - Build list by Sum by day and Week
Hopefully I can explain what I am trying to accomplish. I have no problem achieving my result, but I know that this is probably not the best way to do it.
I have a table with some entries by date. I ...
2
votes
2answers
113 views
Java day of the week from string
I have this simple code:
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date = format.parse("2011-10-29");
calendar.setTime(date);
Log.d("Debug","Day of the week = ...
2
votes
3answers
198 views
Display tomorrow's name in javascript?
I am trying to output something similar to the following on our ecommerce website:
Order by 5pm today for dispatch on Monday
Obviously, the word Monday would be replaced by the name of the next day ...
2
votes
2answers
161 views
Get vector of Tuesdays, but if Tuesday falls on a holiday, then replace it with Wednesday in R
I would like to find all of the Tuesdays between two dates. But if the Tuesday falls on a user-defined list of holidays, then I would like Wednesday instead.
This code works in my tests, but it is ...
2
votes
1answer
81 views
Querying a List of objects to find the the day of the week with the most items
There's got to be a better way!
I have a bunch of log records stored in a List. Each log record has a CreateDate field and what I'm trying to do is find an efficient way to query the List object to ...
2
votes
3answers
215 views
another strange behaviour with GregorianCalendar
Take a look at the piece of code bellow:
Calendar today1 = Calendar.getInstance();
today1.set(Calendar.DAY_OF_WEEK, Calendar.FRIDAY);
System.out.println(today1.getTime());
Calendar today2 = new ...
2
votes
4answers
3k views
Equivalent of WeekDay Function of VB6 in C#
I have to convert some of my VB6 Code to C# , In my VB6 I am having code like
dim I as Long
I = Weekday(Now, vbFriday)
I want equivalent of the same in C#
Can any one Help ?
1
vote
1answer
31 views
Change the week start day on DTPicker
Is it possible to change the Day of the Week that the DTPicker control uses for the first day of the week 'on the fly'?
I know that it uses the system first day of the week (as defined in control ...
1
vote
2answers
56 views
Switch “Day of the Week”
I want to know the current day - and than do something special on this day
on monday = do this
on sunday = do that etc...
I know how to do the switch, but how can I ask to the current day?
if ...
1
vote
1answer
125 views
Check day of week in Android
I want to check if the current day of the week is Sunday or not. How can I find it out? I am using this in alarm activity. Please help me. I want to setup an alarm which does not work on Sunday. ...
1
vote
2answers
95 views
In Perl, how can I find the day of the week which corresponds to a given date?
I am trying to convert given dates to the corresponding days of the week using Perl with Date::Day.
The input string is in the format: October 24, 2011; March 12, 1989; November 26, 1940.
I have ...
1
vote
3answers
133 views
get specfic day of week from the previous week via sas macro
Does any one know how to create macro variable with sas macro process to get specific day of week ?
I would like to get Wednesday date of the previous week every time I run the sas macro.
For ...
1
vote
3answers
186 views
How to histogram day-of-week, and have string labels
I have a data-frame of dates (Date object); see bottom.
I'm trying to convert them to day-of-week and then draw a histogram, but ideally where the labels are 'Monday'...'Sunday' (not numeric)
I have ...
1
vote
4answers
116 views
Convert list of weekdays into intervals
I'm looking for a function that drops days of the week from a sequence of weekdays if 3 or more consecutive days follow each other. This is my test code (uses Test::More test framework)
// function ...
1
vote
2answers
213 views
Convert daily to weekly where week starts on every Tuesday in R
Here is the code: EDIT: SEE REPRODUCIBLE CODE BELOW
>require("quantmod")
>
> corn <- as.xts(read.zoo("~/CORN.csv", sep=",", format ="%m/%d/%Y", header=TRUE))
>
> head(corn)
...
1
vote
1answer
190 views
GregorianCalendar DayofWeek
I know this has to be out there somewhere, but how does the GregorianCalendar class determine which day is the first day of the week? Does it do this by Locale, or does it remain static?
What I'm ...
1
vote
3answers
166 views
find rows that fall between a day and time of the week in sql server
I have a table of rows in MS SQL that contain a start and end day of the week, hour, and time. I need a T-SQL query that can pull rows from that table where GETDATE matches the day of week and time of ...
1
vote
2answers
470 views
Ruby Rails Complex SQL with aggregate function and DayOfWeek
Rails 2.3.4
I have searched google, and have not found an answer to my dilemma.
For this discussion, I have two models. Users and Entries. Users can have many Entries (one for each day).
Entries ...
1
vote
2answers
75 views
Modelling multiple days of the week
This is the second time i've come accross a one-many relationship between object and weekday and I'm not sure if i'm modelling it in the best way:
@Entity
MyObject {
private int id;
private ...
1
vote
1answer
137 views
iPhone - How may I work with Monday as first day of week
I'm working with many dates.
For an international work, I'd like to force (and be able to let the user decide) which is the first day of week.
But, once this is setted (let's say Minday as first day ...
1
vote
1answer
128 views
Find closest last day of the week
I have rows with a date column. I need to find the values closest to the end of each week.
Example:
For week 3 - 9 Jan, from the values 4,5,6 Jan, it will return 6 Jan, and for week 10 - 16 Jan, from ...
1
vote
1answer
172 views
iPhone - how may I check if a date is Monday?
I'm trying to find if a date is Monday.
To do this I proceed this way :
#define kDateAndHourUnitsComponents NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | ...
1
vote
1answer
193 views
c#, to which week does the date fall. even or odd? given the start and end of session “working session”
note
try to give examples which also satisfy the ISO standards.
that is
week 1 for a given year is the week that contains the first Thursday in the year.
by ISO 8601
which year e.g 2010,1998,..
...
1
vote
2answers
435 views
Find date for same day of the week last year?
OK so for example, today is Tuesday, Feb 02. Well the equivalent "Tuesday" from last year was on Feb 03.
How can I find this out programmatically?
Thanks!!
1
vote
5answers
2k views
Converting DayOfWeek enum to a string repesenting the day
I was wondering if there was a way to directly convert the integer DayOfWeek returns into a string representing the day like Monday, Tuesday etc.
Sample code:
MessageBox.Show(Date.Today.DayOfWeek)
...
1
vote
4answers
1k views
Get string representation of a sql DateTime day
Let's say i have a sql datetime of '1 May 2009' or '12 May 2009'.
Is there any built in sql function / operation i can perform on the dates above to return the string representation of the DAY of the ...
1
vote
4answers
1k views
Convert integer to a list of week days
I have an integer stored in a database (SQLAgent Frequency Interval) This integer is actually the sum of the selected days of the week that the schedule is to run
The possible values are any ...
0
votes
1answer
102 views
Getting the start and the end date of a week using java calendar class
I want to get the last and the first week of a week for a given date.
e.g if the date is 12th October 2011 then I need the dates 10th October 2011 (as the starting date of the week) and 16th october ...
0
votes
0answers
60 views
listing only certain days of a week
My task is to calculate time-sheets for teachers. I would like to select the day/days that the course is held, then list those occurrences in a given month. For instance a Tues/Thurs course in August ...
0
votes
2answers
103 views
Getting DayOfWeek from ComboBox
I'm trying to find a way of using DayOfWeek.Monday but by selecting it on a form.
So if the user selects Tuesday from a drop down combo box, then programmatically it will be DayOfWeek.Tuesday.
This ...