Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently using the following code to right-trim all the std::strings in my programs:

std::string s;
s.erase(s.find_last_not_of(" \n\r\t")+1);

It works fine, but I wonder if there are some end-cases where it might fail?

Of course, answers with elegant alternatives and also left-trim solution are welcome.

share|improve this question
84  
The answers to this question are a testament to how lacking the C++ standard library is. – Idan K Aug 24 '10 at 18:15
7  
@IdanK And it still doesn't have this function in C++11. – xiaomao Mar 10 '12 at 18:10
2  
@IdanK: Great, isn't it! Look at all the competing options we now have at our disposal, unencumbered by a single person's idea of "the way that we must do it"! – Lightness Races in Orbit Jan 30 at 1:40
@LightnessRacesinOrbit: Having convenient functions in the library does not preclude being unable to do things another way. The library has vector, but we're not forced to only use vector. – Mooing Duck Mar 27 at 0:34
1  
@MooingDuck: A choice of types is one thing; a choice of functionality within a given type is another, since providing those choices can create limitations on the rest of the type and on its implementation. – Lightness Races in Orbit Mar 27 at 1:14
show 1 more comment

13 Answers

I tend to use one of these 3 for my trimming needs:

#include <algorithm> 
#include <functional> 
#include <cctype>
#include <locale>

// trim from start
static inline std::string &ltrim(std::string &s) {
        s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
        return s;
}

// trim from end
static inline std::string &rtrim(std::string &s) {
        s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
        return s;
}

// trim from both ends
static inline std::string &trim(std::string &s) {
        return ltrim(rtrim(s));
}

They are fairly self explanatory and work very well.

EDIT: btw, I have std::ptr_fun in there to help disambiguate std::isspace because there is actually a second definition which supports locales. This could have been a cast just the same, but I tend to like this better.

share|improve this answer
9  
Just for completeness, I had to add these headers in order to make these great functions compile: #include <algorithm> #include <functional> #include <locale> – Juan Calero Dec 16 '10 at 16:00
2  
Unfortunately, it does not compile on Visual Studio 2008 – Luca Martini May 25 '12 at 9:23
1  
@LucaMartini: add #include <cctype> and it'll compile just fine. I'll update the answer above. – Evan Teran May 25 '12 at 20:02
1  
Also, need to move trim to below both rtrim and ltrim. – Evan Teran May 25 '12 at 20:03
1  
This code was failing on some international strings (shift-jis in my case, stored in a std::string); I ended up using boost::trim to solve the problem. – Tom Jul 22 '12 at 4:36
show 4 more comments

Using Boost's string algorithms would be easiest

#include <boost/algorithm/string.hpp>
using namespace std;
using namespace boost::algorithm;

string str1(" hello world! ");
trim(str1);

// str1 is now "hello world!"
// Use trim_right() if only trailing whitespace is to be removed.
share|improve this answer
1  
What does boost use to determine if a character is whitespace? – Tom Dec 7 '08 at 21:22
3  
It depends on the locale. My default locale (VS2005, en) means tabs, spaces, carriage returns, newlines, vertical tabs and form feeds are trimmed. – MattyT Jan 26 '09 at 13:11
2  
I'm already using lots of boost, #include <boost/format.hpp> #include <boost/tokenizer.hpp> #include <boost/lexical_cast.hpp> but was worried about code bloat for adding in <boost/algorithm/string.hpp> when there are already std::string::erase based alternatives. Happy to report when comparing MinSizeRel builds before and after adding it, that boost's trim didn't increase my codesize at all (must already be paying for it somewhere) and my code isn't cluttered with a few more functions. – Rian Sanderson Jul 25 '11 at 5:36
11  
Boost is such a massive hammer for such a tiny problem. – rodarmor Mar 27 '12 at 4:44
19  
@rodarmor: Boost solves many tiny problems. It's a massive hammer that solves a lot. – Nicol Bolas May 25 '12 at 20:22
show 3 more comments

I like tzaman's solution, the only problem with it is that it doesn't trim a string containing only spaces.

To correct that 1 flaw, add a str.clear() in between the 2 trimmer lines

std::stringstream trimmer;
trimmer << str;
str.clear();
trimmer >> str;
share|improve this answer
+1: Good point. – ereOn Jul 5 '10 at 6:51
Nice :) the problem with both our solutions, though, is that they'll trim both ends; can't make an ltrim or rtrim like this. – tzaman Jul 7 '10 at 8:12
6  
Good, but can't deal with string with internal whitespace. e.g. trim( abc def") -> abc, only abc left. – liheyuan Sep 22 '11 at 3:15

I've been using the following code to right trim spaces and tab characters from std::strings:

// trim trailing spaces
size_t endpos = str.find_last_not_of(" \t");
if( string::npos != endpos )
{
    str = str.substr( 0, endpos+1 );
}

And just to balance things out, I'll include the left trim code too.

// trim leading spaces
size_t startpos = str.find_first_not_of(" \t");
if( string::npos != startpos )
{
    str = str.substr( startpos );
}
share|improve this answer
This won't detect other forms of whitespace... newline, line feed, carriage return in particular. – Tom Dec 7 '08 at 21:23
Right. You have to customize it for the whitespace you're looking to trim. My particular application was only expecting spaces and tabs, but you can add \n\r to catch the others. – Bill the Lizard Dec 8 '08 at 0:20
2  
str.substr(...).swap(str) is better. Save an assignment. – updogliu Aug 30 '12 at 8:55

Hacked off of Cplusplus.com

string choppa(const string &t, const string &ws)
{
    string str = t;
    size_t found;
    found = str.find_last_not_of(ws);
    if (found != string::npos)
    	str.erase(found+1);
    else
    	str.clear();            // str is all whitespace

    return str;
}

This works for the null case as well. :-)

share|improve this answer

In the case of an empty string, your code assumes that adding 1 to string::npos gives 0. string::npos is of type string::size_type, which is unsigned. Thus, you are relying on the overflow behaviour of addition.

share|improve this answer
6  
You're phrasing that as if it's bad. Signed integer overflow behavior is bad. – MSalters Oct 20 '08 at 8:21

I'm not sure if your environment is the same, but in mine, the empty string case will cause the program to abort. I would either wrap that erase call with an if(!s.empty()) or use Boost as already mentioned.

share|improve this answer

Try this, it works for me.

inline std::string trim(std::string& str)
{
str.erase(0, str.find_first_not_of(' '));       //prefixing spaces
str.erase(str.find_last_not_of(' ')+1);         //surfixing spaces
return str;
}
share|improve this answer
If your string contains no suffixing spaces, this will erase starting at npos+1 == 0, and you will delete the entire string. – rgove Oct 17 '12 at 3:51

The above methods are great, but sometimes you want to use a combination of functions for what your routine considers to be whitespace. In this case, using functors to combine operations can get messy so I prefer a simple loop I can modify for the trim. Here is a slightly modified trim function copied from the C version here on SO. In this example, I am trimming non alphanumeric characters.

string trim(char const *str)
{
  // Trim leading non-letters
  while(!isalnum(*str)) str++;

  // Trim trailing non-letters
  end = str + strlen(str) - 1;
  while(end > str && !isalnum(*end)) end--;

  return string(str, end+1);
}
share|improve this answer

Here's what I came up with:

std::stringstream trimmer;
trimmer << str;
trimmer >> str;

Stream extraction eliminates whitespace automatically, so this works like a charm.
Pretty clean and elegant too, if I do say so myself. ;)

share|improve this answer
2  
Hmm; this assumes that the string has no internal whitespace (e.g. spaces). The OP only said he wanted to trim whitespace on the left or right. – SuperElectric Nov 9 '10 at 20:33

@tzaman and @Schoonbrood: Be careful when using the >> operator from a stringstream to a string as it the intention of trimming might end in cutting the string.

Example:

string tm("\nHello  you   \tthere \n ");
stringstream mt;
mt << tm;
tm.clear();
mt >> tm;
cout << "size " << tm.size() << tm << "\n";

The output will be

size 5Hello

Regards, G.

share|improve this answer

This version trims internal whitespace and non-alphanumerics:

static inline std::string &trimAll(std::string &s)
{   
    if(s.size() == 0)
    {
        return s;
    }

    int val = 0;
    for (int cur = 0; cur < s.size(); cur++)
    {
        if(s[cur] != ' ' && std::isalnum(s[cur]))
        {
            s[val] = s[cur];
            val++;
        }
    }
    s.resize(val);
    return s;
}
share|improve this answer

Yet another option - removes one or more characters from both ends.

string strip(const string& s, const string& chars=" ") {
    size_t begin = 0;
    size_t end = s.size()-1;
    for(; begin < s.size(); begin++)
        if(chars.find_first_of(s[begin]) == string::npos)
            break;
    for(; end > begin; end--)
        if(chars.find_first_of(s[end]) == string::npos)
            break;
    return s.substr(begin, end-begin+1);
}
share|improve this answer

protected by Evan Mulawski Jun 24 '12 at 20:33

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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