vc下的时间格式化

简介: vc下的时间格式化
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");

相关文章
|
3月前
|
API Windows
MASM32编程将TimeStamp/UTC转换为具体日期时间的几个有用函数代码
MASM32编程将TimeStamp/UTC转换为具体日期时间的几个有用函数代码
|
C# 图形学
Unity获取系统时间-所有显示方式 DateTime类详解
Unity获取系统时间-所有显示方式 DateTime类详解 本文提供全流程,中文翻译。助力快速理解 Unity 以及 DateTime 时间类的用法 Unity获取系统时间 DateTime 类教程详解 Unity 中我们要获取时间,只需要使用 System 命名空间下的 DateTim.
6202 0
|
2月前
|
Unix PHP 数据库
PHP日期和时间Date()函数获取当前时间
通过灵活运用 `date()`函数及其丰富的格式选项,PHP开发者可以轻松地在应用程序中处理和展示日期及时间信息。无论是需要精确到秒的完整时间戳,还是仅仅展示日期或时间的某一部分,`date()`函数都能胜任。理解并熟练应用这些格式化技巧,对于提升代码的可读性和维护性至关重要。
60 1
time模块与datetime模块,字符串与日期类型转换
time模块与datetime模块,字符串与日期类型转换
|
2月前
(5)Qt中的日期和时间
本文介绍了Qt中处理日期和时间的类QDate、QTime和QDateTime,包括它们的格式化选项、构造函数、公共成员函数以及如何进行日期和时间的增减、比较,同时提到了QElapsedTimer作为QTime的替代品用于计时。
128 0
|
2月前
|
Python
python时间格式化/时间格式转换
python时间格式化/时间格式转换
30 0
|
4月前
|
JavaScript 前端开发
QML中的Date将时间戳和指定格式时间互转
QML中的Date将时间戳和指定格式时间互转
88 0
|
7月前
|
机器学习/深度学习 索引 Python
python calendar内置日历库函数方法
python calendar内置日历库函数方法
84 2
|
7月前
MFC添加年月日时分秒控件
MFC添加年月日时分秒控件
131 0