views:

50

answers:

1

Are there any functions available to parse an RFC3339 date in C++ (even if they are Win32 specific)? I was previously using Qt and the QDateTime::fromString() function to parse the date but I am now using plain old Win32 C++ (No MFC) and I'm struggling to find a way to do it. If there is no standard in way I can write my own but just in case I missed something...

Thanks, J

A: 

I'm not aware of any standard api - atleast on windows. I think you'll have to write your own ...

obelix
Yeah, it's certainly looking that way, never mind, shouldn't be too challenging...
This is related to http://stackoverflow.com/questions/234171/parse-a-date-from-a-string-in-win32 .
Reinderien