vote up 8 vote down star
3

What is the preferred way to remove spaces from a string in C++? I could loop through all the characters and build a new string, but is there a better way?

flag

69% accept rate

6 Answers

vote up 27 vote down check

The best thing to do is to use the algorithm remove_if and isspace:

remove_if(str.begin(), str.end(), isspace);

Now the algorithm itself can't change the container(only modify the values), so it actually shuffles the values around and returns a pointer to where the end now should be. So we have to call string::erase to actually modify the length of the container:

str.erase(remove_if(str.begin(), str.end(), isspace), str.end());

We should also note that remove_if will make at most one copy of the data. Here is a sample implementation:

template<typename T, typename P>
T remove_if(T beg, T end, P pred)
{
    T dest = beg;
    for (T itr = beg;itr != end; ++itr)
        if (!pred(*itr))
            *(dest++) = *itr;
    return dest;
}
link|flag
Because 'isspace' has overloads, you will probably need to qualify the generic code to use ::isspace (the C implementation that doesn't take a locale) or be greeted with cryptic template instantiation errors. – Bklyn Jan 5 '09 at 15:10
vote up 11 vote down

From gamedev

string.erase(std::remove_if(string.begin(), string.end(), std::isspace), string.end());

link|flag
This will not compile on standards-conforming implementations because of the locale-taking overloads of std::isspace. You'll need to use ::isspace or perform some unreadable machinations with std::bind2nd. Isn't generic code beautiful? – Bklyn Jan 5 '09 at 15:23
vote up 6 vote down
std::string::iterator end_pos = std::remove(str.begin(), str.end(), ' ');
str.erase(end_pos, str.end());
link|flag
My up-vote for the canonical erase/remove idiom. Can be made into a one liner: str.erase (std::remove (str.begin(), str.end(), ' '), str.end()); – Bklyn Jan 5 '09 at 15:08
vote up 0 vote down

I'm afraid it's the best solution that I can think of. But you can use reserve() to pre-allocate the minimum required memory in advance to speed up things a bit. You'll end up with a new string that will probably be shorter but that takes up the same amount of memory, but you'll avoid reallocations.

EDIT: Depending on your situation, this may incur less overhead than jumbling characters around.

You should try different approaches and see what is best for you: you might not have any performance issues at all.

Dave

link|flag
remove_if makes at most one copy of each value. So there really isn't that much overhead relative to what needs to be done. – Matt Price Sep 17 '08 at 14:04
vote up 7 vote down

Can you use Boost String Algo? http://www.boost.org/doc/libs/1_35_0/doc/html/string_algo/usage.html#id1290573

erase_all(str, " ");
link|flag
vote up 0 vote down

//For Trimming purposes use BOOST String Algorithms:

include

using namespace std;
using namespace boost;

// ...

string str1(" hello world! ");
trim(str1);      // str1 == "HELLO WORLD!"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.