How to parse a string into a datetime struct in C?

烂漫一生 提交于 2019-12-29 01:51:06

问题


I would like to have a string (char*) parsed into a tm struct in C. Is there any built-in function to do that?

I am referring to ANSI C in C99 Standard.


回答1:


While POSIX has strptime(), I don't believe there is a way to do this in standard C.




回答2:


There is a function called strptime() available in time.h in UNIX derived systems. It is used similar to scanf().

You could just use a scanf() call if you know what format the date is going to be in.

I.E.

char *dateString = "2008-12-10";
struct tm * parsedTime; 
int year, month, day; 
// ex: 2009-10-29 
if(sscanf(dateString, "%d-%d-%d", &year, &month, &day) != EOF){ 
  time_t rawTime;
  time(&rawTime);
  parsedTime = localtime(&rawTime);

  // tm_year is years since 1900
  parsedTime->tm_year = year - 1900;
  // tm_months is months since january
  parsedTime->tm_mon = month - 1;
  parsedTime->tm_mday = day;
}

Other than that, I'm not aware of any C99 char * to struct tm functions.



来源:https://stackoverflow.com/questions/2722606/how-to-parse-a-string-into-a-datetime-struct-in-c

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!