-
Notifications
You must be signed in to change notification settings - Fork 685
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Date Parse: one pattern for ISO8601 DATE or DATE TIME #803
Comments
this is my hack to work around this issue, not ideal:
|
What do you think about this? // parse "%F" or "%FT%TZ"
int64_t
time(const std::string_view datetime)
{
std::istringstream in{datetime.data()};
date::sys_seconds tp;
std::chrono::seconds tod{};
in >> date::parse("%F", tp);
if (in.fail())
{
std::cerr << "Failed to parse time: " << datetime;
return 0;
}
in >> date::parse("T%TZ", tod);
tp += tod;
return tp.time_since_epoch().count();
} The one thing it might not do right for you is interpret "2021-11-23T20:55:52" as equivalent to "2021-11-23" because of the syntax error in the time part (missing trailing Z). If you want to interpret syntax errors in an attempted time-of-day you could peek into the stream looking for 'T' and then commit to parsing a duration or returning an error. |
This is pretty smart! Using two steps instead of one, thanks for sharing this! |
@HowardHinnant may I ask you another question? What is the name for a date time string like this "2023-09-17 17:08:00.368787+00:00", is this another standard? |
Not sure about a standard name. But this will parse it: #include "date/date.h"
#include <chrono>
#include <iostream>
#include <sstream>
int
main()
{
using namespace date;
using namespace std;
using namespace chrono;
istringstream in{"2023-09-17 17:08:00.368787+00:00"};
sys_time<microseconds> tp;
in >> parse("%F %T%Ez", tp);
cout << tp << '\n';
} |
Awesome, thank you again! |
I'm wondering if there is a flexible way to write the pattern so that it can parse either DATE or DATE-TIME (ISO8601)
for example, I have mixed values from a set:
I hope we can do
Obviously "%FT%T" will translate "2021-11-02" into value 0
Any ideas?
The text was updated successfully, but these errors were encountered: