時間格式及方法運用| skyline0217 - 點部落
文章推薦指數: 80 %
ToString("yyyy/MM/dd HH:mm:ss") 2008/09/23 13:03:03 DateTime.Now. ... C# 格式化時間字串 ... Format("{0:f}",dt);//2005年11月5日14:23 Label4.
摘要:時間格式及方法運用
將yyyyMMdd格式的字串,轉換成日期格式
stringsDate="20100504";
DateTimeNewDate=DateTime.ParseExact(sDate,"yyyyMMdd",null,System.Globalization.DateTimeStyles.AllowWhiteSpaces);
時間格式
DateTime.Now.ToString("yyyyMMdd")20080923
DateTime.Now.ToString("yyyy/MM/dd")2008/09/23
DateTime.Now.ToString("yyyy/M/d")2008/9/23
DateTime.Now.ToString("yyyy/MM/ddHH:mm:ss")2008/09/2313:03:03
DateTime.Now.ToString("T")下午01:04:43
DateTime.Now.ToString("t")下午01:05
DateTime.Now.ToString("tt")下午
DateTime.Now.ToString("yyyy/MM/ddtthh:mm:ss")2008/09/23下午01:07:27
DateTime.Now.ToString("yyyyMMddhhmmss")20080923010921
HH為24小時制,hh為12小時制
C#格式化時間字串
DateTimedt=DateTime.Now;
Label1.Text=dt.ToString();//2005-11-513:21:25
Label2.Text=dt.ToFileTime().ToString();//127756416859912816
Label3.Text=dt.ToFileTimeUtc().ToString();//127756704859912816
Label4.Text=dt.ToLocalTime().ToString();//2005-11-521:21:25
Label5.Text=dt.ToLongDateString().ToString();//2005年11月5日
Label6.Text=dt.ToLongTimeString().ToString();//13:21:25
Label7.Text=dt.ToOADate().ToString();//38661.5565508218
Label8.Text=dt.ToShortDateString().ToString();//2005-11-5
Label9.Text=dt.ToShortTimeString().ToString();//13:21
Label10.Text=dt.ToUniversalTime().ToString();//2005-11-55:21:25
Label1.Text=dt.Year.ToString();//2005
Label2.Text=dt.Date.ToString();//2005-11-50:00:00
Label3.Text=dt.DayOfWeek.ToString();//Saturday
Label4.Text=dt.DayOfYear.ToString();//309
Label5.Text=dt.Hour.ToString();//13
Label6.Text=dt.Millisecond.ToString();//441
Label7.Text=dt.Minute.ToString();//30
Label8.Text=dt.Month.ToString();//11
Label9.Text=dt.Second.ToString();//28
Label10.Text=dt.Ticks.ToString();//632667942284412864
Label11.Text=dt.TimeOfDay.ToString();//13:30:28.4412864
Label1.Text=dt.ToString();//2005-11-513:47:04
Label2.Text=dt.AddYears(1).ToString();//2006-11-513:47:04
Label3.Text=dt.AddDays(1.1).ToString();//2005-11-616:11:04
Label4.Text=dt.AddHours(1.1).ToString();//2005-11-514:53:04
Label5.Text=dt.AddMilliseconds(1.1).ToString();//2005-11-513:47:04
Label6.Text=dt.AddMonths(1).ToString();//2005-12-513:47:04
Label7.Text=dt.AddSeconds(1.1).ToString();//2005-11-513:47:05
Label8.Text=dt.AddMinutes(1.1).ToString();//2005-11-513:48:10
Label9.Text=dt.AddTicks(1000).ToString();//2005-11-513:47:04
Label10.Text=dt.CompareTo(dt).ToString();//0
//Label11.Text=dt.Add(?).ToString();//???一???段
Label1.Text=dt.Equals("2005-11-616:11:04").ToString();//False
Label2.Text=dt.Equals(dt).ToString();//True
Label3.Text=dt.GetHashCode().ToString();//1474088234
Label4.Text=dt.GetType().ToString();//System.DateTime
Label5.Text=dt.GetTypeCode().ToString();//DateTime
Label1.Text=dt.GetDateTimeFormats('s')[0].ToString();//2005-11-05T14:06:25
Label2.Text=dt.GetDateTimeFormats('t')[0].ToString();//14:06
Label3.Text=dt.GetDateTimeFormats('y')[0].ToString();//2005年11月
Label4.Text=dt.GetDateTimeFormats('D')[0].ToString();//2005年11月5日
Label5.Text=dt.GetDateTimeFormats('D')[1].ToString();//20051105
Label6.Text=dt.GetDateTimeFormats('D')[2].ToString();//星期六20051105
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-514:06
Label11.Text=dt.GetDateTimeFormats('r')[0].ToString();//Sat,05Nov200514:06:25GMT
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-514:23
Label6.Text=string.Format("{0:G}",dt);//2005-11-514:23:23
Label7.Text=string.Format("{0:M}",dt);//11月5日
Label8.Text=string.Format("{0:R}",dt);//Sat,05Nov200514:23:23GMT
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
Label12.Text=string.Format("{0:u}",dt);//2005-11-0514:23:23Z
Label13.Text=string.Format("{0:U}",dt);//2005年11月5日6:23:23
Label14.Text=string.Format("{0:Y}",dt);//2005年11月
Label15.Text=string.Format("{0}",dt);//2005-11-514:23:23?
Label16.Text=string.Format("{0:yyyyMMddHHmmssffff}",dt);//yyyymm等可以?置
Label16.Text=string.Format("{0:yyyyMMdd}",dt);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
DateTimegTime=Convert.ToDateTime(drw["AddTime"].ToString());
ggTime=string.Format("{0:D}",gTime).ToString();
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//今天
DateTime.Now.Date.ToShortDateString();
//昨天,就是今天的日期?一
DateTime.Now.AddDays(-1).ToShortDateString();
//明天,同理,加一
DateTime.Now.AddDays(1).ToShortDateString();
//本週(要知道本週的第一天就得先知道今天是星期幾,?而得知本週的第一天就是幾天前的那一天,要注意的是?裡的每一週是?週日始至週六止
DateTime.Now.AddDays(Convert.ToDouble((0-Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString();
DateTime.Now.AddDays(Convert.ToDouble((6-Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString();
//如果你?不明白,再看一下中文?示星期幾的方法就??懂了
//由於DayOfWeek返回的是?字的星期幾,我?要把它??成?字方便我???,有些人可能?用switch?一?一?地?照,其?不用那麼麻?的
string[]Day=newstring[]{"星期日","星期一","星期二","星期三","星期四","星期五","星期六"};
Day[Convert.ToInt16(DateTime.Now.DayOfWeek)];
//上週,同理,一?周是7天,上週就是本週再?去7天,下周也是一?
DateTime.Now.AddDays(Convert.ToDouble((0-Convert.ToInt16(DateTime.Now.DayOfWeek)))-7).ToShortDateString();
DateTime.Now.AddDays(Convert.ToDouble((6-Convert.ToInt16(DateTime.Now.DayOfWeek)))-7).ToShortDateString();
//下周
DateTime.Now.AddDays(Convert.ToDouble((0-Convert.ToInt16(DateTime.Now.DayOfWeek)))+7).ToShortDateString();
DateTime.Now.AddDays(Convert.ToDouble((6-Convert.ToInt16(DateTime.Now.DayOfWeek)))+7).ToShortDateString();
//本月,很多人都??本月的第一天嘛肯定是1?,最後一天就是下?月一?再?一天。
?然?是?的
//一般的?法
DateTime.Now.Year.ToString()+DateTime.Now.Month.ToString()+"1";//第一天
DateTime.Parse(DateTime.Now.Year.ToString()+DateTime.Now.Month.ToString()+"1").AddMonths(1).AddDays(-1).ToShortDateString();//最後一天
//巧用C#裡ToString的字符格式化更?便
DateTime.Now.ToString("yyyy-MM-01");
DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddMonths(1).AddDays(-1).ToShortDateString();
//上?月,?去一?月份
DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddMonths(-1).ToShortDateString();
DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString();
//下?月,加去一?月份
DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddMonths(1).ToShortDateString();
DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddMonths(2).AddDays(-1).ToShortDateString();
//7天後
DateTime.Now.Date.ToShortDateString();
DateTime.Now.AddDays(7).ToShortDateString();
//7天前
DateTime.Now.AddDays(-7).ToShortDateString();
DateTime.Now.Date.ToShortDateString();
//本年度,用ToString的字符格式化我?也很容易地算出本年度的第一天和最後一天
DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).ToShortDateString();
DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddYears(1).AddDays(-1).ToShortDateString();
//上年度,不用再解?了吧
DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddYears(-1).ToShortDateString();
DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddDays(-1).ToShortDateString();
//下年度
DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddYears(1).ToShortDateString();
DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddYears(2).AddDays(-1).ToShortDateString();
//本季度,很多人都??得?裡??,需要????的?程?判?。
其?不用的,我?都知道一年四?季度,一?季度三?月
//首先我?先把日期推到本季度第一?月,然後??月的第一天就是本季度的第一天了
DateTime.Now.AddMonths(0-((DateTime.Now.Month-1)%3)).ToString("yyyy-MM-01");
//同理,本季度的最後一天就是下季度的第一天?一
DateTime.Parse(DateTime.Now.AddMonths(3-((DateTime.Now.Month-1)%3)).ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString();
//下季度,相信你?都知道了。
。
。
。
收工
DateTime.Now.AddMonths(3-((DateTime.Now.Month-1)%3)).ToString("yyyy-MM-01");
DateTime.Parse(DateTime.Now.AddMonths(6-((DateTime.Now.Month-1)%3)).ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString();
//上季度
DateTime.Now.AddMonths(-3-((DateTime.Now.Month-1)%3)).ToString("yyyy-MM-01");
DateTime.Parse(DateTime.Now.AddMonths(0-((DateTime.Now.Month-1)%3)).ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString();
C#時間
回首頁
延伸文章資訊
- 1DateTime.ToString 方法(System) | Microsoft Docs
目前DateTime 物件值的字串表示,如 format 及 provider 所指定。 ... Aug 17 '00 * dddd, MMMM dd :Thursday, August 17 ...
- 2發問
Format("{0:yyyy/MM/dd HH:MM:ss}",時間) ... 如何把2012/2/9 下午01:39:11用string.format改成2012/02/09 13:39:1...
- 3自訂日期與時間格式字串 - Microsoft Docs
DateTime date1 = new DateTime(70, 08, 04); Console.WriteLine(date1.ToString("MM/dd/yyyy g", Cultu...
- 4How to convert any date format to yyyy-MM-dd - Stack Overflow
- 5Checking Date format from a string in C# - Stack Overflow