vote up 0 vote down star

I'm trying to add a timestamp to a file. However the DateTime Format ToString() looks weird to me.

Here is my code:

Dim _timeStamp As String = Date.Now.ToString("dd_mm_yyyy")

but the value looks like this:

_timeStamp = "03_24_2009"

I checked my PC and the current date is correct. Shouldn't the value look like this: 03_03_2009?

flag

42% accept rate
Please consider accepting an answer :) – GateKiller Mar 3 at 20:37
I did. I vote the first one up. – Jack Mar 3 at 20:39
@Jack: Click the checkmark to accept – Daniel LeCheminant Mar 3 at 20:40
@Jack: You might consider doing that (accepting an answer) on almost ever other question you've asked as well :-/ – Daniel LeCheminant Mar 3 at 20:41
Didn't know about the check mark. i'll do so on all the question that i asked. thanks. – Jack Mar 3 at 22:23
show 1 more comment

6 Answers

vote up 14 vote down check

For 2-digit month number, use MM not mm. Captial M's refer to month, lowercase m's refer to minutes.

Also, John Sheehan has a nice cheat-sheet for such things.

link|flag
Handy cheat sheet: john-sheehan.com/blog/net-cheat-sheets – John Sheehan Mar 3 at 20:40
vote up 4 vote down

Try using MM for month. The .ToString is case-sensitive, and lowercase means minutes.

link|flag
vote up 2 vote down

use MM, mm is for minutes

link|flag
vote up 2 vote down

mm is minutes. You want MM for months.

link|flag
vote up 4 vote down

As others have said, "mm" means minutes and "MM" means months.

I find these MSDN pages useful:

There are also various cheat sheets available on the web. I know I've seen a few of them around, but I only remember my own DZone refcard which includes it (also on Scribd).

EDIT: As mentioned in the comments, John Sheehan has one too. Given that they're all free, why not download everything you can find and keep the one you find most useful? :)

link|flag
Jon, I've put those pages into a cheat sheet: john-sheehan.com/blog/net-cheat-sheets – John Sheehan Mar 3 at 20:41
@John: So have I, effectively - see the edit I was making when you commented :) I'll add your link too. – Jon Skeet Mar 3 at 20:42
vote up 1 vote down

I always get this right thanks to my mnemonic:

Months are larger than minutes, "MM" is larger than "mm"

link|flag

Your Answer

Get an OpenID
or

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