vote up 0 vote down star

Hi

I would like to convert a yyyy-mm-dd to something like this:

"Saturday, 2 October 2009"

I would like also to have the option to modify the language both day of the week and month (make it customizable)

thanks in advance ;)

flag
9  
What language/framework are you using? – Konrad Rudolph Nov 7 at 11:10

4 Answers

vote up 2 vote down check

Assuming .NET (from the datetime tag):

DateTime.Parse("2009-10-02").ToString("D", CultureInfo.CreateSpecificCulture("en"));
link|flag
vote up 1 vote down

In C, you would use a combination of the localtime() and strftime() functions. They should handle internationalization more or less automatically, if your application is set up for it.

link|flag
vote up 5 vote down

Since you never told us the language, here's a discussion on how to do it in COBOL.

link|flag
vote up 0 vote down

Convert the date into an integer, representing the days since a specific date, then add a number and apply the modulus operator with the operand 7. That will give you a number 0-6 that represents the day of week.

However, most languages have this functionality built-in.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.