I know this may be simple but being C++ I doubt it will be. How do I convert a string in the form 01/01/2008 to a date so I can manipulate it? I am happy to break the string into the day month year constituents. Also happy if solution is windows only.
|
|
I figured it out without using strptime: Break the date down into its components i.e. day month year then:
tm can now be converted to a time_t and be manipulated. |
||
|
|
|
|
You could try Boost.Date_Time Input/Output. |
||
|
|
|
strptime doesn't seem to be available (am using mingw compiler). Are there any other options? |
||
|
|
|
|
sscanf is what you need. Try this (this is for dd/mm/yyyy, perhaps you want mm/dd/yyyy).
|
||
|
|
|
|
||
|
|
