C獲取系統時間(字串格式)

2021-07-11 00:56:24 字數 792 閱讀 1638

time.h中函式原型

_crtimp size_t __cdecl strftime(_out_writes_z_(_sizeinbytes) char * _buf, _in_ size_t _sizeinbytes, _in_z_ _printf_format_string_ const char * _format, _in_ const struct tm * _tm);
寫不超過_sizeinbytes個數個位元組,返回實際寫進buf的位元組數。格式化字串的format:

%a星期幾的簡寫形式

%a星期幾的全稱

%b月份的簡寫形式

%b月份的全稱

%c日期和時間

%d月份中的日期,0-31

%h小時,00-23

%i12進製小時鐘點,01-12

%j年份中的日期,001-366

%m年份中的月份,01-12

%m分,00-59

%p上午或下午

%s秒,00-60

%u星期幾,1-7

%w星期幾,0-6

%x當地格式的日期

%x當地格式的時間

%y年份中的最後兩位數,00-99%y年

%z地理時區名稱

windows,linux通用,是標準庫函式

C 格式化時間字串

datetime dt datetime.now label1.text dt.tostring 2005 11 5 13 21 25 label2.text dt.tofiletime tostring 127756416859912816 label3.text dt.tofiletimeutc...

js獲取指定格式的時間字串

如下 對date的擴充套件,將 date 轉化為指定格式的string 月 m 日 d 小時 h 分 m 秒 s 季度 q 可以用 1 2 個佔位符,年 y 可以用 1 4 個佔位符,毫秒 s 只能用 1 個佔位符 是 1 3 位的數字 例子 new date format yyyy mm dd h...

C 獲取系統時間及時間格式

datetime 數字型 system.datetime currenttime new system.datetime 取當前年月日時分秒 currenttime system.datetime.now 取當前年 int 年 currenttime.year 取當前月 int 月 currentt...