close

[C# 資訊]DateTime.ToString(string format) 日期時間格式輸出 - 程式成事

 

//--CultureInfo.CreateSpecificCulture("zh-tw")指定繁體語系
//--CultureInfo.InstalledUICulture由系統決定語系

DateTime.Now.ToString("yyyy-MM-dd (ddd) tt hh:mm:ss", CultureInfo.InstalledUICulture);
//--2009-08-05(星期三) 下午 09:03:08 

2009-08-05(星期三) 下午 09:03:08

年分 y 9
  yy 09
  yyy... 2009
月份 M 8
  MM 08
  MMM... 八月(視使用語系)
日期/星期 d 5
  dd 05
  ddd... 星期三(視使用語系)
小時 h 9
  hh 09
  H 21(上午9點則顯示9)
  HH 21
上午/下午 tt 下午(視使用語系)
分鐘 m 3
  mm 03
秒數 s 8
  ss 08

 

 

 

 

 

 

 

 

 

 

arrow
arrow

    程式小超人 發表在 痞客邦 留言(0) 人氣()