vote up 2 vote down star

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.

flag

5 Answers

vote up 2 vote down

I figured it out without using strptime: Break the date down into its components i.e. day month year then:

struct tm  tm;
time_t rawtime;
time ( &rawtime );
tm = *localtime ( &rawtime );
tm.tm_year = year - 1900;
tm.tm_mon = month - 1;
tm.tm_mday = day;
mktime(&tm);

tm can now be converted to a time_t and be manipulated.

link|flag
vote up 3 vote down

You could try Boost.Date_Time Input/Output.

link|flag
Dates are not simple, just look at the US getting it wrong. Boost::Date_Time may look like big, but it's just a small first step. – MSalters Nov 21 '08 at 13:03
vote up 0 vote down

strptime doesn't seem to be available (am using mingw compiler). Are there any other options?

link|flag
vote up 0 vote down

sscanf is what you need. Try this (this is for dd/mm/yyyy, perhaps you want mm/dd/yyyy).

#include <stdio.h>

int main() {
  char test[] = "01/01/2008";

  int day, month, year;

  sscanf(test, "%d/%d/%d", &day, &month, &year);
  printf("day: %d\n",day);
  printf("moth: %d\n",month);
  printf("year: %d\n",year);
}
link|flag
printf()/scanf() in C++? Shame! :) – e.James Nov 21 '08 at 10:51
vote up 4 vote down
#include <time.h>
char *strptime(const char *buf, const char *format, struct tm *tm);
link|flag

Your Answer

Get an OpenID
or

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