Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

95
votes
19answers
6k views

SQL to determine minimum sequential days of access?

The following User History table contains one record for every day a given user has accessed a website (in a 24 hour UTC period). It has many thousands of records, but only one record per day per ...
78
votes
10answers
96k views

Formatting a date in javascript

I noticed that javascriptnew Date() function is very smart in accepting dates in several formats. Xmas95 = new Date("25 Dec, 1995 23:15:00") Xmas95 = new Date("2009 06 12,12:52:39") Xmas95 = new ...
71
votes
14answers
136k views

Batch file to delete files older than N days

I am looking for a way to delete all files older than 7 days in an MS-DOS batch file. I've searched around the web, and found some examples with hundreds of lines of code, and others that required ...
54
votes
4answers
15k views

Get Last Day of the Month in Python

Is there a way using Python's standard library to easily determine (i.e. one function call) the last day of a given month? If the standard library doesn't support that, does the dateutil package ...
42
votes
10answers
47k views

Best approach to remove time part of datetime in SQL Server

Which method provides the best performance when removing the time portion from a datetime field in SQL Server? a) select DATEADD(dd, DATEDIFF(dd, 0, getdate()), 0) or b) select ...
37
votes
7answers
9k views

In Ruby on Rails, how do I format a date with the “th” suffix, as in, “Sun Oct 5th”?

I want to display dates in the format: short day of week, short month, day of month without leading zero but including "th", "st", "nd", or "rd" suffix. For example, the day this question was asked ...
33
votes
6answers
6k views

Comparing date ranges

In mysql, If I have a list of date ranges (range-start and range-end). e.g. 10/06/1983 to 14/06/1983 15/07/1983 to 16/07/1983 18/07/1983 to 18/07/1983 And I want to check if another date range ...
32
votes
10answers
56k views

How to return the date part only from a SQL Server datetime datatype

SELECT GETDATE() Returns: 2008-09-22 15:24:13.790 I want that date part without the time part: 2008-09-22 00:00:00.000
29
votes
8answers
9k views

DateTime.Now vs. DateTime.UtcNow

I've been wondering what exactly are the principles of how the two properties work. I know the second one is universal and basically doesn't deal with time zones, but can someone explain in detail how ...
28
votes
15answers
9k views

Why does Javascript getYear() return 108?

Why does this javascript return 108 instead of 2008? it gets the day and month correct but not the year? myDate = new Date(); year = myDate.getYear(); year = 108?
26
votes
5answers
7k views

Best way to turn an integer into a month name in c#?

Is there a best way to turn an integer into its month name in .net? Obviously I can spin up a datetime to string it and parse the month name out of there. That just seems like a gigantic waste of ...
23
votes
15answers
14k views

Calculate business days

I need a method for adding "business days" in PHP. For example, Friday 12/5 + 3 business days = Wednesday 12/10. At a minimum I need the code to understand weekends, but ideally it should account for ...
22
votes
8answers
23k views

Get the previous month's first and last day dates in c#

I can't think of an easy one or two liner that would get the previous months first day and last day. I am LINQ-ifying a survey web app, and they squeezed a new requirement in. The survey must ...
22
votes
4answers
7k views

How do I calculate number of days betwen two dates using Python?

If I have two dates (ex. '8/18/2008' and '9/26/2008') what is the best way to get the difference measured in days?
20
votes
5answers
9k views

Random date in C#

I'm looking for some succinct C# 3 code to generate a random date between Jan 1 1995 and the current date. I'm thinking some solution that utilizes Enumerable.Range somehow may make this more ...
19
votes
8answers
5k views

Is there an easy way in .NET to get “st”, “nd”, “rd” and “th” endings for numbers?

I am wondering if there is a method or format string I'm missing in .NET to convert the following: 1 to 1st 2 to 2nd 3 to 3rd 4 to 4th 11 to 11th 101 to 101st 111 to 111th This link ...
15
votes
7answers
40k views

Count work days between two dates in T-SQL

How can I calculate the number of work days between two dates in SQL Server? Monday to Friday and it must be T-SQL.
15
votes
6answers
27k views

How do I get the difference between two Dates in JavaScript?

I'm creating an application which lets you define events with a time frame. I want to automatically fill in the end date when the user selects or changes the start date. I can't quite figure out, ...
13
votes
3answers
350 views

Why is Date.today - 6.months + 6.months != Date.today?

In Ruby, on Halloween: Date.today - 6.months + 6.months != Date.today Do we need to update Ruby's date implementation? Do other languages have the same issue?
13
votes
13answers
25k views

Get a list of dates between two dates

Using standard mysql functions is there a way to write a query that will return a list of days between two dates. eg given 2009-01-01 and 2009-01-13 it would return a one column table with the ...
13
votes
6answers
13k views

Calculate last day of month in javascript

if you provide 0 as the dayValue in Date.setFullYear you get the last day of the previous month: d = new Date(); d.setFullYear(2008, 11, 0); // Sun Nov 30 2008 There is reference to this behaviour ...
13
votes
7answers
20k views

Get integer value of the current year in Java

I need to determine the current year in Java as an integer. I would like to be able to use this value as a counter that I can, for example, use to run from now until a specified year in the past (i.e. ...
12
votes
4answers
334 views

What's the best way to store date values in string format?

I have to store date values (TDateTime) in a string format. What is the best way to do this? I considered the following approaches: FloatToStr : looses precision, depends on locale settings ...
12
votes
17answers
2k views

“Date of birth” validation: How far/much would you go?

I'm quite anal about form validation. So while creating a validator for a "data of birth" (DOB) field in one of my current projects for a job application form (platform/language is neutral in this ...
12
votes
5answers
19k views

How to sanity check a date in java

I find it curious that the most obvious way to create Date objects in Java has been deprecated and appears to have been "substituted" with not so obvious to use lenient calendar. So... How do you ...
11
votes
4answers
5k views

Parsing unsupported date formats in via Cocoa's NSDate

With the Cocoa framework how can I parse @"2008-12-29T00:27:42-08:00" into an NSDate object? The standard -dateWithString: doesn't like it.
10
votes
3answers
295 views

Localizing Date Ranges

Does anyone know how to localize date ranges using C#? In particular, I want to generate "smart" date ranges, so that redundant information is eliminated. Here are some examples in US English ...
10
votes
1answer
2k views

How do compare dates in Perl?

I have two dates (parsed using str2time). How can I tell if one is after the other?
10
votes
6answers
5k views

How do I determine if a given date is the Nth weekday of the month?

Sorry if the title is awkward, but I can't think of a better summary. Here is what I am trying to do: Given a date, a day of the week, and an integer n, determine whether the date is the nth day of ...
10
votes
2answers
2k views

How do I elegantly print the date in RFC822 format in Perl?

How can I elegantly print the date in RFC822 format in Perl?
9
votes
4answers
12k views

C#: Calculate difference between two dates (number of days)?

I see that this question has been answered for Java, Javascript, and PHP, but not C#. So, how might one calculate the number of days between two dates in C#?
8
votes
4answers
10k views

MySQL Query - Records between Today and Last 30 Days

Greetings! I want to return all records that were added to the database within the last 30 days. I need to convert the date to mm/dd/yy because of display purposes. create_date between ...
8
votes
4answers
5k views

Creating a range of dates in Python

I want to create a list of dates, starting with today, and going back an arbitrary number of days, say, in my example 100 days. Is there a better way to do it than this? import datetime a = ...
8
votes
4answers
2k views

How can I parse relative dates with Perl?

I'd love to know if there is a module to parse "human formatted" dates in Perl. I mean things like "tomorrow", "Tuesday", "next week", "1 hour ago". My research with CPAN suggest that there is no ...
8
votes
4answers
15k views

Formatting Timestamps in Java

Is there a way to format a UTC time into any arbitrary string format I want in java? Basically I was thinking of having some class take the timestamp and I pass it is string telling it how I want it ...
8
votes
9answers
29k views

How do i get today's date in C# in 8/28/2008 format?

How do i get today's date in C# in 8/28/2008 format? I need to set a string variable to today's date (preferably without the year) but there's got to be a better way than building it month-/-day once ...
7
votes
5answers
635 views

Get first day of week in SQL Server

I am trying to group records by week, storing the aggregated date as the first day of the week. However, the standard technique I use for rounding off dates does not appear to work correctly with ...
7
votes
5answers
6k views

How do I exclude Weekend days in a SQL Server query?

How do I exclude values in a DateTime column that are Saturdays or Sundays? For example, given the following data: date_created '2009-11-26 09:00:00' -- Thursday '2009-11-27 09:00:00' -- Friday ...
7
votes
3answers
982 views

How can I perform divison on a datetime.timedelta in python?

I'd like to be able to do the following: num_intervals = (cur_date - previous_date) / interval_length or print (datetime.now() - (datetime.now() - timedelta(days=5))) / timedelta(hours=12) ...
7
votes
15answers
956 views

What languages do date, time, and calendar operations really well?

This is probably too much to ask, but is there any language that does a really terrific job of representing time and date operations? I'll grant straight away that it's really hard to write a truly ...
6
votes
2answers
234 views

What is the best way to apply default date formatting to all such fields in an ASP.NET MVC 3 app?

My goals are: Display all dates in d MMM yyyy format Default/existing values on first page load Anything entered by the user, then round-tripped via the server Add class="behaviour-date-picker" to ...
6
votes
4answers
1k views

Format Django DateField as ISO format

I'm using Django to serve up some XML. Part of the requirements is that my dates are formatted as follows: 1969-12-31T18:33:28-06:00 How can I output a DateField in Django in that format?
6
votes
1answer
651 views

How can I work with dates before 1900 in PHP?

I am using PHP and jQuery to build an interactive timeline which needs to display dates between 1500 and 2020. I usually use PHP's strtotime function when working with dates, but it does not work for ...
6
votes
2answers
180 views

Is US English the only language with mmddyyyy format?

Are there any other languages that default to anything other than ddmmyyyy (other than the US)? I'm working on an international project and wondering if there are any other languages that use the ...
6
votes
5answers
583 views

C# Library to parse human readable time spans

Is there a library that exists that will parse human readable timespans into a .net TimeSpan? I need something that will parse strings like 30 days 1 week 5 hours Does such a thing exist? Its ...
6
votes
5answers
6k views

Adding Days to a Date but Excluding Weekends

Given a date how can I add a number of days to it, but exclude weekends. For example, given 11/12/2008 (Wednesday) and adding five will result in 11/19/2008 (Wednesday) rather than 11/17/2008 ...
6
votes
13answers
4k views

Count number of Mondays in a given date range

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#.
6
votes
3answers
458 views

Simplest way to create a date that is the first day of the month, given another date

In SQL Server what is the simplest/cleanest way to make a datetime representing the first of the month based on another datetime? eg I have a variable or column with 3-Mar-2005 14:23 and I want to get ...
6
votes
6answers
2k views

Datetime timezone adjustments

My database is located in e.g. california. My user table has all the user's timezone e.g. -0700 UTC How can I adjust the time from my database server whenever I display a date to the user who lives ...
6
votes
6answers
788 views

Given a Date Object how do I determine the last day of its month?

I'm trying to use the following code but it's returning the wrong day of month. Calendar cal = Calendar.getInstance(); cal.setTime(sampleDay.getTime()); cal.set(Calendar.MONTH, ...

1 2 3 4 5 12