Tagged Questions

9
votes
1answer
277 views

How to strictly parse a date with only a year and a week number when the first day of this week is in the previous year?

My goal is to have a strict parsing (and forbid dates like '98/99' for example). However, the following code raises a java.text.ParseException with the message Unparseable date: "98/01": ...
5
votes
2answers
76 views

In .NET, how do I get the order of YYYY, MM and DD for a given culture

Designing a culture independent birthdate input consisting of three select: year, month and day. In .NET, how do I get the correct display order of the three for a given culture, ie.: ...
5
votes
4answers
367 views

Get the year from specified date php

I have a date in this format 2068-06-15 I want to get the year from the date through php functions. please suggest php function. Thanks
4
votes
1answer
64 views

Why is this date not in the week of the next year? (C# calendar)

I want to calculate the week number of a given date. DateTime date = Convert.ToDateTime("31.12.2001"); DateTimeFormatInfo dfi = DateTimeFormatInfo.CurrentInfo; System.Globalization.Calendar cal = ...
4
votes
8answers
1k views

PHP 'Years' array

I am trying to create an array for years which i will use in the DOB year piece of a form I am building. Currently, I know there are two ways to handle the issue but I don't really care for either: ...
3
votes
10answers
2k views

Date Difference in Years C#

How can I calculate date difference between two dates in Years. For instance: (Datetime.Now.Today() - 11/03/2007) in years.
3
votes
5answers
8k views
3
votes
5answers
2k views

Why does a new SimpleDateFormat object contain calendar with the wrong year?

I came upon a strange behavior that has left me curious and without a satisfactory explanation as yet. For simplicity, I've reduced the symptoms I've noticed to the following code: import ...
2
votes
3answers
140 views

How do I compare dates in rails without the year?

I'm trying to find all users with birthdays in the coming 2 weeks. I tried the following: User.find(:all, :conditions => ["DOB > ? and DOB <= ?", Date.today, 2.weeks.from_now]) which ...
2
votes
1answer
255 views

Wrong “week of year” in Android

The number of "week of year" returned from a Date is wrong. This is my code: Calendar c = Calendar.getInstance(); c.setTime(my_date); int num_week = c.get(Calendar.WEEK_OF_YEAR); If my_date (type ...
2
votes
1answer
137 views

Get year of previous and next months

In my calendar, I need to compare the current year to the years of previous and next years to find out if the month needs to reset back to January, and the year incremented/decremented. I already have ...
2
votes
4answers
400 views

How to get the day of year in ruby?

What is the best way to get the day of year of an specific date in Ruby? For example: 31/dec/2009 -> 365, 01/feb/2008 -> 32, etc
1
vote
4answers
81 views

Day number of the year: date('z') + 1; (1..366) in (001..366) format

How to display the day of the year in 3 digits format so that January 1st is not "1", but "001"? I'm curious as to whether such a function is implemented (something like date('zzz') ) or not, so I ...
1
vote
1answer
266 views

sql server 2008 r2: case statement in where clause for current fiscal year

I'm trying to write code where I want to only see requests from the current fiscal year. Our fiscal year starts July 1st and ends June 30th But when I write the following code SELECT group_name ...
1
vote
1answer
188 views

Informix iSQL date function help

I'm trying to extract just the year out of either of the built-in date functions of Informix TODAY or CURRENT Is there a way to do this without SUBSTR()?
1
vote
2answers
168 views

MySQL date query only returns one year, when multiple exist

I'm a part-time designer/developer with a part-time photography business. I've got a database of photos with various bits of metadata attached. I want to query the database and return a list of the ...
0
votes
0answers
57 views

Order By Year with Date field Mysql/PHP

I am having trouble with getting my year to echo properly. Example: I have 2 news articles one with a year of 2011 and the other 2012. They are splitting into the correctly "year" div. But when it ...
0
votes
2answers
79 views

php: advance to next year minus 1 day

Problem: I'm using strtotime to advance by 364 days in the future, but I'm getting troubles with leap years. Example: today is January 20, 2012 - I need PHP to compute for me the timestamp of January ...
0
votes
0answers
42 views

MySQL partition implies adding a column in primary key

I am wondering something with MySQL partitioning. Suppose I have a table like that (OLTP example database) CREATE TABLE `orders` ( `order_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `client_id` ...
0
votes
2answers
85 views

PHP Date function for current year not working right?

Ok so I was trying to have a form dropdown menu autoselect the current date without too much javascript coding, so I got the code below (it doesn't autoselect, but it does include the current date as ...
0
votes
2answers
32 views

PHP regex optional non-matching groups?

I'm trying to make a date regex that allows years from 1900 to 2099, with the 19 or 20 optional. I'm almost there, but I can't find a way to allow the 19 or 20 optional part. Here's what I've got: ...
0
votes
1answer
86 views

SAS EG date issue

i want to build a bar chart where the X-axis is month year ( example : NOV 2010) in my dataset i got a column called MonthYear contains the month year value. The problem is when i use the MonthYear ...
0
votes
3answers
198 views

In SQL how to return records matching date and month only (ignore year)

I want to return records where the date is between 1 march and 31 june (for example) but I want records for all years.
0
votes
1answer
606 views

CakePHP Increase Year Range in Drop Down

in CakePHP, if i keep table field type as date, then it shows drop down in month, date and year, but here, age range is upto 1990 only, how can i increase that to 1900? Earliest reply would be ...
0
votes
1answer
64 views

Using keyword to search date

If I have a list of data as following: id name postdate 46 apple 2011-02-20 47 orange 2011-01-12 49 banana 2008-07-01 How do I make a MYSQL ...
0
votes
3answers
115 views

Java - Before a certain month of every year

How could I code a method that will allow a number to be added to another number before a certain month of each year? Thanks, Chris.
0
votes
2answers
350 views

PHP: How to get age in php from day, month, year?

I have 3 variables $day, $month, $year each of them have the values what the users given to them. I want to get his real Age too from these 3 variables. For example the user enters this date for his ...
0
votes
1answer
237 views

display array of dates as 12 month view

i work with php/Mysql i have table with two cols (date , cash) with values like {7/2001:100$, 12/2001:50$ , 1/2002:30$ , 5/2002:90$ , 6/2003:80$,9/2003:20$ } i would like to make cash flow table ...
0
votes
3answers
857 views

jQuery - Dynamic Copyright Year

I have recently been running into alot of my clients coming to me in the last month asking me to update their Copyright on their sites to reflect 2010. Is it possible to write a small snippet with ...
-2
votes
3answers
164 views

Help Please!! java

I did the ode but it's not working the way I want it too. For example if I change int y = 2000, m = 5, d = 06; to int y = 2889, m = 44, d = 16; it prints it instead of what is in the if statement ...