WEB开发网
开发学院软件开发C语言 c# 日期函数 string.Format 阅读

c# 日期函数 string.Format

 2009-06-03 08:30:46 来源:WEB开发网   
核心提示: Label7.Text = dt.GetDateTimeFormats('D')[3].ToString();//星期六 2005年11月5日 Label8.Text = dt.GetDateTimeFormats('M')[0].ToString();//

Label7.Text = dt.GetDateTimeFormats('D')[3].ToString();//星期六 2005年11月5日

Label8.Text = dt.GetDateTimeFormats('M')[0].ToString();//11月5日

Label9.Text = dt.GetDateTimeFormats('f')[0].ToString();//2005年11月5日 14:06

Label10.Text = dt.GetDateTimeFormats('g')[0].ToString();//2005-11-5 14:06

Label11.Text = dt.GetDateTimeFormats('r')[0].ToString();//Sat, 05 Nov 2005 14:06:25 GMT

或者dt.ToString("yyyy年MM月dd日");//2005年11月5日

dt.ToString("yyyy-MM-dd");//2005-11-5日

以此类推……

Label1.Text =? string.Format("{0:d}",dt);//2005-11-5

Label2.Text =? string.Format("{0:D}",dt);//2005年11月5日

Label3.Text =? string.Format("{0:f}",dt);//2005年11月5日 14:23

Label4.Text =? string.Format("{0:F}",dt);//2005年11月5日 14:23:23

Label5.Text =? string.Format("{0:g}",dt);//2005-11-5 14:23

Label6.Text =? string.Format("{0:G}",dt);//2005-11-5 14:23:23

Label7.Text =? string.Format("{0:M}",dt);//11月5日

Label8.Text =? string.Format("{0:R}",dt);//Sat, 05 Nov 2005 14:23:23 GMT

Label9.Text =? string.Format("{0:s}",dt);//2005-11-05T14:23:23

Label10.Text = string.Format("{0:t}",dt);//14:23

Label11.Text = string.Format("{0:T}",dt);//14:23:23

上一页  1 2 3 4 5 6 7 8  下一页

Tags:日期 函数 string

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接