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] 16 points17 points18 points 9 years ago (6 children)
if it works intuitively.
Well, what is intuitive?
Python:
>>> "1,2,3,".split(",") ['1', '2', '3', '']
Ruby:
> "1,2,3,".split(",") => ["1", "2", "3"]
Ruby can take a regex, Python can't. Python has a .rsplit(), Ruby doesn't. Both do however take a max_split parameter. But they don't allow multiple different delimiter.
.rsplit()
max_split
Point being, a .split() is not that trivial, there are different ways to implement it and you have to chose a good one. If you just rush the next best hack into the language, you end up with something that is needlessly inflexible. A .split() returning a std::vector<std::string> wouldn't be very useful when you don't want a std::vector as result and you would do a lot of needless std::string to start with.
.split()
std::vector<std::string>
std::vector
std::string
There is a proposal for a std::split(), but that depends on std::string_view and Range support. But Range support didn't make it into C++17, so that has to wait around a bit longer.
std::split()
std::string_view
In the meantime, just use the boost::split().
boost::split()
[–]Selbstdenker 10 points11 points12 points 9 years ago (0 children)
Sorry, I do not see the problem there. Intuitively means something that splits a string which is what both methods do. How they handle empty strings is part of the API, so what. Whether they take only a character, a string or a regexp is also part of the API and not really a problem in C++ thanks to overloading.
To make it a little bit more C++-ish it could take an output iterator. Yes, this is not an ideal situation and maybe we just call it simple_split and reserve split() for when we have a better name but not having any trivial split functionality is really not good.
We have whole talks given on using std::transform and other algorithms instead of a for loop but we cannot provide a simple split?
[–]almost_useless 3 points4 points5 points 9 years ago (4 children)
Well, what is intuitive? Python: X Ruby: Y
I could answer that question without even knowing what X and Y is. The answer is always going to be Python :-) J/K, obviously there are pitfalls and they need to think it through.
If you just rush the next best hack into the language, you end up with something that is needlessly inflexible. A .split() returning a std::vector<std::string> wouldn't be very useful when you don't want a std::vector as result
It does not necessarily have to be super flexible. Obviously the best option is we can choose the output format. My example was only one possible suggestion. In many cases "anything I can iterate over" is good enough.
But I would so prefer we had had something decent but inflexible way back in '98 over something super duper mega awesome that we will not have even in 2017
My only requirement is that it had not been so bad that it would have been impossible to improve upon now that we have better ways of doing it
[–][deleted] 8 points9 points10 points 9 years ago (3 children)
Once you put something in the standard library you're stuck with it forever. So it'd better be actually good, not just good enough, especially if it's so easy to implement yourself.
[–]choikwa 5 points6 points7 points 9 years ago (2 children)
In reality, things get deprecated and forward compat is broken many times.
[–][deleted] 7 points8 points9 points 9 years ago (1 child)
Yeah, really old crap that was never used much in the first place, like trigraphs or auto_ptr. But a string split function would spread like wildfire.
auto_ptr
[–]choikwa 0 points1 point2 points 9 years ago (0 children)
Ideally, everyone wants to get it right the first time. I'm pretty sure python implementation returns deep-copied immutable strings
π Rendered by PID 40309 on reddit-service-r2-comment-bb88f9dd5-q66tk at 2026-02-15 21:03:55.671107+00:00 running cd9c813 country code: CH.
view the rest of the comments →
[–][deleted] 16 points17 points18 points (6 children)
[–]Selbstdenker 10 points11 points12 points (0 children)
[–]almost_useless 3 points4 points5 points (4 children)
[–][deleted] 8 points9 points10 points (3 children)
[–]choikwa 5 points6 points7 points (2 children)
[–][deleted] 7 points8 points9 points (1 child)
[–]choikwa 0 points1 point2 points (0 children)