码迷,mamicode.com
首页 > Windows程序 > 详细

c#中 时间格式化

时间:2016-10-10 09:32:11      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:

 一、//格式化为DateTime
                nowdate = nowdate.Substring(0, 4) + "-" + nowdate.Substring(4, 2) + "-" + nowdate.Substring(6, 2)        + " "  + nowdate.Substring(8, 2) + ":" + nowdate.Substring(10, 2) + ":" + nowdate.Substring(12, 2);

                DateTime DTnowdate = Convert.ToDateTime(nowdate);
二、
          把字符串20160620093031转换成2016/6/20 9:30:31
           string TarStr = "yyyyMMddHHmmss";  //注意这里用到HH
            IFormatProvider format = new System.Globalization.CultureInfo("zh-CN");
            DateTime MyDate = DateTime.ParseExact(datetime, TarStr, format);

 

c#中 时间格式化

标签:

原文地址:http://www.cnblogs.com/twinklemaple/p/5944539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!