-
Notifications
You must be signed in to change notification settings - Fork 96
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
Reading from an std::istream #8
Comments
Yes. You'll have to read the stream into a string like: std::string s(std::istreambuf_iterator<char>(stream), {}); Then, you can use: Reader<...> reader;
reader.parse(s); |
But |
I see. So you have an |
The CSV files resides inside a |
I see. Okay I'll add a method that can read from |
Is it possible to parse CSV from an
std::istream
?The text was updated successfully, but these errors were encountered: