vote up 3 vote down star

What's the best way to convert a date string, formatted as "MM-DD-YY HH:MM:SS", to a time_t value in either C or C++?

flag

4 Answers

vote up 4 vote down check

Use strptime() to parse the time into a struct tm, then use mktime() to convert to a time_t.

link|flag
strptime() doesn't appear to be available on Windows. Is there a good alternative? – Andrew Nov 26 '08 at 19:17
Don't know if a good alternative on Windows, there are several open source implementations floating around that you could use. Alternatively, if you know the date will always be in the format you provided, you can parse it into a struct tm, perhaps using sscanf, and then use mktime to get a time_t. – Robert Gamble Nov 26 '08 at 19:23
vote up 2 vote down

Boost's date time library should help; in particular you might want to look at http://www.boost.org/doc/libs/1_37_0/doc/html/date_time/date_time_io.html

link|flag
vote up 2 vote down

In the absence of strptime you could use sscanf to parse the data into a struct tm and then call mktime. Not the most elegant solution but it would work.

link|flag
Thanks Rob... nice pic btw. – Andrew Nov 26 '08 at 19:22
vote up 1 vote down

I'm afraid there isn't any in Standard C / C++ . There is the POSIX function strptime which can convert to struct tm, which can then be converted to time_t using mktime.

If you are aiming for cross platform compatibility, better use boost::date_time, which has sophisticated functions for this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.