我有这个 unix 时间戳,使用 ctime 转换时显示为Thu Mar 26 15:30:26 2007
,但我只需要Thu Mar 26 2007
.
如何更改或截断以消除时间 (HH:MM:SS)?
从手册页strptime()
:
以下示例演示了strptime()
和的使用strftime()
。
#include <stdio.h>
#include <time.h>
int main() {
struct tm tm;
char buf[255];
strptime("2001-11-12 18:31:01", "%Y-%m-%d %H:%M:%S", &tm);
strftime(buf, sizeof(buf), "%d %b %Y %H:%M", &tm);
puts(buf);
return 0;
}
根据自己的需要进行调整。
既然你有一个time_t
值,你可以使用localtime()
and strftime()
:
#include <time.h>
#include <stdio.h>
int main(void)
{
time_t t = time(0);
struct tm *lt = localtime(&t);
char buffer[20];
strftime(buffer, sizeof(buffer), "%a %b %d %Y", lt);
puts(buffer);
return(0);
}
或者,如果您觉得必须使用ctime()
,则:
#include <time.h>
#include <stdio.h>
#include <string.h>
int main(void)
{
time_t t = time(0);
char buffer[20];
char *str = ctime(&t);
memmove(&buffer[0], &str[0], 11);
memmove(&buffer[11], &str[20], 4);
buffer[15] = '\0';
puts(buffer);
return(0);
}