Does anyone know of a library that offers something similar to .NET's Parse/TryParse for dates and times that can be used on Linux from C++?
I've looked at the Boost date/time code but I'm not sure that I can do it without specifying the particular input format before attempting to parse. Basically, I might have dates in any number of formats, and want to simply throw it at a function and see if I get something useful out of it before having to deal with edge cases and whatnot.
Thanks for any suggestions.