我试图从#34; 01/01/01"等字符串中打印日期。并获得类似于" 2001年1月1日的星期一。
我找到了一个与ctime男人有关的东西,但真的不知道如何使用它。
任何帮助?
谢谢,
答案 0 :(得分:6)
您可以使用strptime
将字符串日期转换为struct tm
struct tm tm;
strptime("01/26/12", "%m/%d/%y", &tm);
然后使用struct tm
strftime
char str_date[256];
strftime(str_date, sizeof(str_date), "%A, %d %B %Y", &tm);
printf("%s\n", str_date);
答案 1 :(得分:4)
strftime()
完成这项工作。
char buffer[256] = "";
{
struct tm t = <intialiser here>;
strftime(buffer, 256, "%H/%M/%S", &t);
}
printf("%s\n", buffer);
答案 2 :(得分:1)
您可能正在寻找strftime