首页 > 其他分享 >vc下的时间格式化

vc下的时间格式化

时间:2023-01-27 20:34:30浏览次数:32  
标签:00 vc 格式化 name locale decimal number 12 时间

formatting   codes   for   strftime   are   listed   below:     

%a
Abbreviated weekday name
%A
Full weekday name
%b
Abbreviated month name
%B
Full month name
%c
Date and time representation appropriate for locale
%d
Day of month as decimal number (01 – 31)
%H
Hour in 24-hour format (00 – 23)
%I
Hour in 12-hour format (01 – 12)
%j
Day of year as decimal number (001 – 366)
%m
Month as decimal number (01 – 12)
%M
Minute as decimal number (00 – 59)
%p
Current locale's A.M./P.M. indicator for 12-hour clock
%S
Second as decimal number (00 – 59)
%U
Week of year as decimal number, with Sunday as first day of week (00 – 53)
%w
Weekday as decimal number (0 – 6; Sunday is 0)
%W
Week of year as decimal number, with Monday as first day of week (00 – 53)
%x
Date representation for current locale
%X
Time representation for current locale
%y
Year without century, as decimal number (00 – 99)
%Y
Year with century, as decimal number
%z, %Z
Either the time-zone name or time zone abbreviation, depending on registry settings; no characters if time zone is unknown
%%
Percent sign
例如:CString strDate=CTime::GetCurrentTime().Format("%Y-%m-%d %H:%M:%S");

标签:00,vc,格式化,name,locale,decimal,number,12,时间
From: https://blog.51cto.com/u_15942605/6024284

相关文章

  • 本地存储(localStorage)如何设置过期时间?
    思考在我们使用​​cookie​​​的时候是可以设置有效期的,但是​​localStorage​​​本身是没有该机制的,只能人为的手动删除,否则会一直存放在浏览器当中,可不可以跟cookie一......
  • 用VC++访问XML文件
    用微软的DOM,MSXML4//引入msxml4.dll#import"C:/WINNT.0/system32/msxml4.dll"//创建XMLDOMDocument指针MSXML2::IXMLDOMDocumentPtrpXMLDoc;//初始化COM接口::C......
  • Spring长轮询DeferredResult简单用法以及SpringMVC对于后置结果处理
    简单研究下spring长轮训 DeferredResult的用法以及简单的原理。如果让自己设计,可能就是会用一些异步+spring的扩展机制来实现。1.DeferredResult简单用法1.新建测......
  • Spring长轮询DeferredResult简单用法以及SpringMVC对于后置结果处理
    简单研究下spring长轮训 DeferredResult的用法以及简单的原理。如果让自己设计,可能就是会用一些异步+spring的扩展机制来实现。1.DeferredResult简单用法1.新建测......
  • 字符串格式化、字符串补0
    不够6位用0在左边补0Longcount=getCountByPredicate(booleanExpression);returnString.format("%06d",count); ......
  • Java 解析 带 T Z 的 UTC 时间格式 日期
    直接上代码吧publicstaticvoidmain(String[]args)throwsParseException{SimpleDateFormatdf=newSimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");......
  • 【转】springmvc 使用logback
    一、概述:步骤:第一步加入相关pom文件;步骤二:添加logback.xml配置;步骤三:web.xml添加日志监听 二、pom.xml加入jar包1<!--Logback-->2<!--https://......
  • VSCode配置编译MSVC程序
    VSCode配置编译MSVC程序本文来自于以下链接的实践:​​​ConfigureVSCodeforMicrosoftC++​​前言自从盘古开天辟地以来,乱世纷争,群雄并起。在编程IDE领域,各路豪杰争霸,互......
  • 监控Python 内存使用情况和代码执行时间
    我的代码的哪些部分运行时间最长、内存最多?我怎样才能找到需要改进的地方?”在开发过程中,我很确定我们大多数人都会想知道这一点,而且通常情况下存在开发空间。在本文中总结......
  • SPSSPRO时间序列
    SPSSPRO时间序列    概念       ARIMA(差分自回归移动平均模型)简介                    ADF思路 ......