vote up 0 vote down star
1

Is one aware of a date parsing function for c. I am looking for something like:

time = parse_time("9/10/2009");
printf("%d\n", time->date);
time2 = parse_time("Monday September 10th 2009")    
time2 = parse_time("Monday September 10th 2009 12:30 AM")

Thank you

flag

what platform are you using? – Mitch Wheat Sep 12 at 3:47
As mentioned by blak3r in a comment, your specification is ambiguous. In the first example, the date can be parsed as 10th september or as 9th october, depending on the country you are in. You have to specify a format. – bortzmeyer Sep 13 at 17:03

4 Answers

vote up 1 vote down check

The Julian Library does much of what you ask -- see in particular how its parsing works. However I don't think it quite stretches ALL the way to your requirements (that Monday, I believe, would throw it for a spin;-).

link|flag
vote up 1 vote down

There are two fairly common approaches in C:

  1. Use strptime() with an array of supported formats you accept.

  2. Bang head against table a lot, and then either give up or use another language which has a usable library already (like perl or python).

link|flag
vote up 0 vote down

In time.h you have strptime:

// Scan values from buf string into tptr struct. On success it returns pointer
// to the character following the last character parsed. Otherwise it returns null.
char * strptime(const char* buf, const char* format, struct tm* tptr)

which does the opposite of

// Format tm into a date/time string.
size t strftime(char* s, size t n, const char* format, const struct tm* tptr)

Click here for the complete Reference on Wikipedia

link|flag
What if I do not know the format? – adk Sep 12 at 3:44
Not in VC++ either.... – Mitch Wheat Sep 12 at 3:45
1  
@adk hmm... well you need to give some instruction in order for it to know whether your feeding it a month versus a day or year... ya know? But, you could for a given input string try to parse it with multiple formats and keep trying it until the function doesn't return null. – blak3r Sep 12 at 3:48
@Mitch Wheat - dunno about VC++ did you check ctime? – blak3r Sep 12 at 3:54
vote up 1 vote down

Unfortunately, the only thing in the standard library is getdate. It will handle many time formats, but you need to know the format in advance - not just pass a generic string to the function.

It's also not supported on Visual C++, if that's an issue for you. The Gnu C runtime supports this routine, however.

link|flag
is there anything that is not in the standard and poratble? – adk Sep 12 at 3:29

Your Answer

Get an OpenID
or

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