Tagged Questions
4
votes
3answers
587 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 ...
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 ...
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
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
124 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
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
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 ...