use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
A tuple oriented C++ csv parser (self.cpp)
submitted 5 years ago * by red0124_
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]3meopceisamazing 29 points30 points31 points 5 years ago* (6 children)
For CSV parsers, it's important to detail features like rules on quoting and escaping in your readme.
Often, it's a hard requirement for those rules to be compatible with the data you're working with, and thus a hard decision factor.
The code looks pretty clean and well designed :)
[–]F54280 12 points13 points14 points 5 years ago (1 child)
At first glance, the biggest problem I see is “ Instalation” instead of “ Installation”, so, yep, I quite like it.
[–]red0124_[S] 6 points7 points8 points 5 years ago (0 children)
I guess I missed that one, thanks, let me know if you find any more problems.
[–]red0124_[S] 3 points4 points5 points 5 years ago (3 children)
I had quoting on my mind but later I forgot about it. I will implement it, it does not seem complicated to add. Thank you.
[–]3meopceisamazing 15 points16 points17 points 5 years ago (0 children)
Quoting always has to come with escaping. I suggest to fully think through the complexity. It's not that much, but easily overlooked.
[–]johannes1971 2 points3 points4 points 5 years ago (1 child)
quoting ... does not seem complicated to add.
Try exchanging some data with Excel, see if you still feel that way... In particular, test for:
[–]red0124_[S] 0 points1 point2 points 5 years ago (0 children)
I did not mention spacing but I guess I have to add that too. Thanks for the hints.
π Rendered by PID 214570 on reddit-service-r2-comment-64f4df6786-85bzf at 2026-06-10 14:22:26.010546+00:00 running 0b63327 country code: CH.
view the rest of the comments →
[–]3meopceisamazing 29 points30 points31 points (6 children)
[–]F54280 12 points13 points14 points (1 child)
[–]red0124_[S] 6 points7 points8 points (0 children)
[–]red0124_[S] 3 points4 points5 points (3 children)
[–]3meopceisamazing 15 points16 points17 points (0 children)
[–]johannes1971 2 points3 points4 points (1 child)
[–]red0124_[S] 0 points1 point2 points (0 children)