I have a string containing a date, and another string containing the date format of the first string. Is there a function that I can call to convert that date into something like a SYSTEMTIME structure? Basically, I'd like the opposite of GetDateFormat().
|
No, but you can write a function that will convert the date format string into a sscanf format string and series of variables. Then copy the data from the variables to the systemtime structure and you're all set. It's not trivial, but it is probably the most flexible arrangement if you must support many different date formats. |
|||
|
|
|
It doesn't do quite what you've described, but I'd start by using |
|||||
|
|
If you have a POSIX system, you can use the |
|||
|
In the source file Here. I have a function that reads dates in a bunch of different formats, the function is called
It's a class that reads in the day / month / year and also handles hours / minutes / seconds. The code is LGPL so feel free to copy it.
|
|||
|
|
|
Yes, just use the standard opposite win32 api of GDF() |
|||
|
|