Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Format date in C#

Tags:

c#

datetime

I have a string used to display the datetime, like: Mon, dd Dec YYYY hh:mm:ss.

I want to display it like this: dd Dec YYYY. Is there any simple way to do it?

like image 926
Yongwei Xing Avatar asked Jan 28 '10 01:01

Yongwei Xing


2 Answers

You can call the formatting methods on the DateTime class

DateTime time = DateTime.ParseExact("Mon, 28 Dec 2009 04:34:17", "ddd, dd MMM yyyy hh:mm:ss", CultureInfo.InvariantCulture);
string output = time.ToString("dd MMM yyyy", CultureInfo.InvariantCulture);

Here is a list of options for the format strings.

like image 56
SLaks Avatar answered Oct 31 '22 12:10

SLaks


from http://www.csharp-examples.net/string-format-datetime/

// 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

See also:

Custom Date and Time Format Strings - MSDN

if you only have the string, just split the string to an array, and concatenate the parts you want in another order

String str = "Mon, dd Dec YYYY hh:mm:ss";
String[] strArr = str.Split(" ");
str = strArr[2] + " " + strArr[3];

If the date can change, then do what SLaks posted in his answer

like image 31
sergiogx Avatar answered Oct 31 '22 11:10

sergiogx