zoukankan      html  css  js  c++  java
  • [String.Format(转换时间格式)]

             string.Format("{0:d}", System.DateTime.Now);        // 2017/6/2;

             string.Format("{0:D}", System.DateTime.Now);      // 2017年6月2日;

             string.Format("{0:f}", System.DateTime.Now);       //2017年6月2日 14:09;

             string.Format("{0:F}", System.DateTime.Now);       //2017年6月2日 14:09:36;

             string.Format("{0:g}", System.DateTime.Now);       //2017/6/2 14:09;

             string.Format("{0:G}", System.DateTime.Now);      // 2017/6/2 14:09:36;

             string.Format("{0:M}", System.DateTime.Now);       //6月2日;

             string.Format("{0:R}", System.DateTime.Now);      // Fri, 02 Jun 2017 14:09:36 GMT;

             string.Format("{0:s}", System.DateTime.Now);       //2017-06-02T14:09:36;

             string.Format("{0:t}", System.DateTime.Now);       //14:09;

             string.Format("{0:T}", System.DateTime.Now);       //14:09:36;

             string.Format("{0:u}", System.DateTime.Now);       //2017-06-02 14:09:36Z;

             string.Format("{0:U}", System.DateTime.Now);       //2017年6月2日 6:09:36;

             string.Format("{0:Y}", System.DateTime.Now);       //2017年6月;

             string.Format("{0}", System.DateTime.Now);      // 2017/6/2 14:09:36;


          string.Format("{0:yyyyMMddHHmmssffff}", System.DateTime.Now);        //201706021409364497;

        以此类推......










     

  • 相关阅读:
    移动端适配问题
    面试题
    c++学习之路
    es6特性
    ndoe安装依赖注意的问题
    如何阻止button默认的刷新页面操作
    npm 全局安装模块,出现XXX不是内部或外部命令解决方法
    .Net MVC系统源码与教学视频《资源分享系列6》
    Javascript书店课程设计《资源分享系列4》
    Python教程与源码《资源分享系列4》
  • 原文地址:https://www.cnblogs.com/shaopang/p/6933120.html
Copyright © 2011-2022 走看看