0

ctime を使用して変換すると と表示されるこの UNIX タイムスタンプがありますThu Mar 26 15:30:26 2007が、必要なのは だけThu Mar 26 2007です。

時刻 (HH:MM:SS) を削除するために変更または切り詰めるにはどうすればよいですか?

4

2 に答える 2

1

のマンページから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;
   }

自分のニーズに合わせて調整してください。

于 2013-01-29T03:35:18.497 に答える
1

値を取得したので、 andtime_tを使用できます。localtime()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);
}
于 2013-01-29T03:43:41.897 に答える