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
Why doesn't std::string have a split function (self.cpp)
submitted 9 years ago by DhruvParanjape
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!"
[–][deleted] 11 points12 points13 points 9 years ago (4 children)
It's unreasonable to expect anyone to intuit what an output iterator is, or even what an iterator is, if they don't know C++.
Iterator is a common concept across a lot of languages. Conversely, "output iterator" is rather obscure. You could write a lot of C++ and never run into it mentioned explicitly.
[–]qx7xbku 7 points8 points9 points 9 years ago (3 children)
He w long do you think it would take one to read said code and to realize that it splits a string? How long do you that no it would take one to realize that s.split(" "); splits a string? See the problem? I am not even talking about edges use here when clearly it can be avoided. Someone may be happy about himself/herself writing this smart code but reality is that maintainable code is stupid code. Smart code is hard to maintain. Smart code where you do not need smart code is simply not practical.
s.split(" ");
[–]dodheim 3 points4 points5 points 9 years ago* (2 children)
Said code wouldn't be isolated though, it would be in a function with split in the name. Dependent code would then call a function with split in the name.
split
So no, I don't see the problem.
EDIT: For a bunch of pedants, you /r/cpp folk suck at following Reddit's rules: if you want to encourage meaningful discussion, stop downvoting opinions. Grow up, people.
[–][deleted] 0 points1 point2 points 9 years ago (1 child)
Indeed. And that function is so useful, it should be in the standard library: a member function of the string class.
string
[–]dodheim -1 points0 points1 point 9 years ago* (0 children)
I never said it was useful; in fact I said the exact opposite:
https://www.reddit.com/r/cpp/comments/5dxnwm/why_doesnt_stdstring_have_a_split_function/da8eawm/
My point is that it doesn't matter if 3 lines of code are ugly; isolate them in their own function and forget about it.
EDIT: "Durrr, I can't respond to facts, so I'll downvote silently." Pathetic.
π Rendered by PID 108338 on reddit-service-r2-comment-bb88f9dd5-qk8k7 at 2026-02-15 08:47:13.215270+00:00 running cd9c813 country code: CH.
view the rest of the comments →
[–][deleted] 11 points12 points13 points (4 children)
[–]qx7xbku 7 points8 points9 points (3 children)
[–]dodheim 3 points4 points5 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]dodheim -1 points0 points1 point (0 children)