Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Have problem to get the correct format. Expecting "2013/10" but instead I get "2013/00". Why is that and how can I fix this?

DateTime dt = DateTime.Parse("2013-Oct-01");   
string str2 = dt.ToString("yyyy/mm");
share|improve this question

3 Answers

mm is for minute while MM is for month.

DateTime dt = DateTime.Parse("2013-Oct-01");   
string str2 = dt.ToString("yyyy/MM");

See msdn http://msdn.microsoft.com/fr-fr/library/vstudio/zdtaw1bw.aspx

For a more complete list :

// create date time 2008-03-09 16:05:07.123
DateTime dt = new DateTime(2008, 3, 9, 16, 5, 7, 123);

String.Format("{0:y yy yyy yyyy}", dt);  // "8 08 008 2008"   year
String.Format("{0:M MM MMM MMMM}", dt);  // "3 03 Mar March"  month
String.Format("{0:d dd ddd dddd}", dt);  // "9 09 Sun Sunday" day
String.Format("{0:h hh H HH}",     dt);  // "4 04 16 16"      hour 12/24
String.Format("{0:m mm}",          dt);  // "5 05"            minute
String.Format("{0:s ss}",          dt);  // "7 07"            second
String.Format("{0:f ff fff ffff}", dt);  // "1 12 123 1230"   sec.fraction
String.Format("{0:F FF FFF FFFF}", dt);  // "1 12 123 123"    without zeroes
String.Format("{0:t tt}",          dt);  // "P PM"            A.M. or P.M.
String.Format("{0:z zz zzz}",      dt);  // "-6 -06 -06:00"   time zone
share|improve this answer
Now, I get "2013-10" which is still different. Where does the "-" come from. – Chris Jan 8 at 0:42
You should get "2013/10". – btoueg Jan 8 at 0:48
1  
The / separator is culture-dependent. msdn.microsoft.com/en-us/library/vstudio/… – Joe Jan 8 at 1:07

mm is minutes. You need to use MM which is months:

var str2 = dt.ToString("yyyy/MM");
share|improve this answer

mm is minutes. MM is month. You are using the wrong field.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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