I have a string which is date. Is there a function from standart library which can parse it in any numeric format(e.g timestamp or julian day)
For example
std::string str("01/01/2017");//Local format date
UINT64 timestamp = function(str);
I don't want to pass format date in a function. I want to know only that a string represented in local format.