up vote 5 down vote favorite
6
share [g+] share [fb]

What is the best approach in stripping leading and trailing spaces in C?

link|improve this question

74% accept rate
feedback

11 Answers

up vote 3 down vote accepted

You can do this entirely in place.

 void stripLeadingAndTrailingSpaces(char* string){

     assert(string);

     /* First remove leading spaces */

     const char* firstNonSpace = string;

     while(*firstNonSpace != '\0' && isspace(*firstNonSpace))
     {
          ++firstNonSpace;
     }

     size_t len = strlen(firstNonSpace)+1;         

     memmove(string, firstNonSpace, len);

     /* Now remove trailing spaces */

     char* endOfString = string + len;

     while(string < endOfString  && isspace(*endOfString))
     {
          --endOfString ;
     }

     *endOfString = '\0';

}
link|improve this answer
2  
There are two problems with this: (1) strcpy has undefined behaviour if the source and destination buffers overlap (use memmove or a while loop to copy the string), and (2) consider what happens if the string contains embedded whitespace characters, not just leading and trailing spaces. – ChrisN Dec 9 '08 at 8:48
I don't really like the use of assert here. In my mind, assert means 'this really shouldn't happen, but just in case', whereas a null pointer passed to this function is quite possible. Perhaps it is merely taste. – Bernard Dec 9 '08 at 11:16
My interpretation is this: A string which consists of one or more printable characters is of course a string. An empty string (containing only the null terminator) is also a string. However, a string which is just a null pointer is not a string at all; this is a precondition violation. – fpsgamer Dec 9 '08 at 11:31
1  
I would like to see this calculate the size that actually NEEDS to be memmoved rather than memmoving the whole string and then trimming the trailing spaces. – SoapBox Dec 9 '08 at 11:59
@eben: One could argue that NULL pointers are so common that you have the wrong precondition. I would put the test for NULL inside the function otherwise you are forcing all users of your function to test for NULL. Do users to always do this: if (x) {stripLeadingAndTrailingSpaces(x);} – Loki Astari Dec 9 '08 at 15:14
show 8 more comments
feedback

Here is how linux kernel does the trimming, called strstrip():

char *strstrip(char *s)
{
    size_t size;
    char *end;

    size = strlen(s);

    if (!size)
    	return s;

    end = s + size - 1;
    while (end >= s && isspace(*end))
    	end--;
    *(end + 1) = '\0';

    while (*s && isspace(*s))
    	s++;

    return s;
}

Its basically a better formatted and error-checked version what the previous poster said.

link|improve this answer
This implementation is easy to misuse. A naive user is likely to try to free the returned pointer (or overwrite their original pointer). Since we're not working in the kernel, I think it would be nicer to copy the trimmed string to the beginning of the buffer :) – fpsgamer Dec 9 '08 at 8:54
This looks quite bad. You're not only altering the original string but creating another pointer at a different location; I'd say this is a bad example at this level; I also agree that a buffer should be passed, or the result stored somewhere else. – widgisoft Dec 9 '08 at 9:52
...If you don't keep the original pointer; surely you've just caused a memory leak as the initial "space" can never be recovered. – widgisoft Dec 9 '08 at 9:53
1  
This discussion shows that what makes a good answer depends on the context in which the code will be used. If preserving the original string is important, this is not the solution; otherwise, this works. It also works unless tracking the initial pointer is important or a memory copy is an issue, – Jonathan Leffler Dec 9 '08 at 15:39
To address the concerns listed in the comments, you could just return strdup(s) and require the caller free the result. (i know non-standard but it's like 4 lines to hand roll if you don't have it). – Evan Teran Dec 9 '08 at 19:19
show 1 more comment
feedback

This question looks as if it might be a homework question, so I'll answer obliquely: look up the man pages for isspace(3) and strlen(3) and use pointer arithmetic. Also depending on the problem at hand you may need malloc(3) to hold space for the result.

Don't forget that the representation of a C string includes a trailing 0 byte, often written '\0', which is not counted as part of the length of the string.

link|improve this answer
feedback

Here's a version using isspace:

char * trim(char *c) {
    char * e = c + strlen(c) - 1;
    while(*c && isspace(*c)) c++;
    while(e > c && isspace(*e)) *e-- = '\0';
    return c;
}
link|improve this answer
feedback
char *strstrip(char *s)
{
    char *end;

    while ( (*s) && isspace( *s))
        s++;

    if(!( *s) )
        return s;
    end = s;

    while( ! *end)
        end++;
    end--;

    while (end ! = s && isspace( *end))
        end--;
    *(end + 1) = '\0';

    return s;
}

It is basically a more optimized code (in terms of speed & codesize ).

If we need to retain memory space then,

void strstrip(char *s)
{
    char *start;
    char *end;

    start = s; 
    while ( (*start) && isspace( *start))
        start++;

    if(!( *start) ) 
    {
        *s='\0';
        return ;
    }
    end = start;

    while( ! *end)
        end++;
    end--;

    while (end ! = start && isspace( *end))
        end--;
    *(end + 1) = '\0';

    memmove(s, start, end-start+1);

    return;
}
link|improve this answer
feedback

Here is a more concise and safer version of lakshmanaraj's first function:

#include <ctype.h>
char *mytrim(char *s)
{
    if(s) { /* Don't forget to check for NULL! */
        while(*s && isspace(*s))
            ++s;
        if(*s) {
            register char *p = s;
            while(*p)
                ++p;
            do {
                --p;
            } while((p != s) && isspace(*p));
            *(p + 1) = '\0';
        }
    }
    return(s);
}
link|improve this answer
checking s is not null should be done before the function call. Assume s is a garbage pointer and then how do you gaurantee that this program? Hence bset practice is that S should be checked before the function call and not inside the function call. – lakshmanaraj Feb 6 '09 at 5:38
@lakshmanaraj: I said safer...not safe. What if our user is on a non-standard system and wants to call the function like this: mytrim(strdup(x));? – anon Feb 7 '09 at 19:44
feedback

A refinement of another post above.

void  strstrip( char *s )
{
  char *start;
  char *end;

  // Exit if param is NULL pointer
  if (s == NULL)
    return;

  // Skip over leading whitespace
  start = s;
  while ((*start) && isspace(*start))
    start++;      

  // Is string just whitespace?
  if (!(*start)) 
  {         
    *s = 0x00; // Truncate entire string
    return;     
  }     

  // Find end of string
  end = start;
  while (*end)         
    end++;     

  // Step back from NUL
  end--;      

  // Step backward until first non-whitespace
  while ((end != start) && isspace(*end))         
    end--;     

  // Chop off trailing whitespace
  *(end + 1) = 0x00;

  // If had leading whitespace, then move entire string back to beginning
  if (s != start)
    memmove(s, start, end-start+1);      

  return; 
} 
link|improve this answer
feedback
int i = strlen(s) - 1;
while (isspace(s[i]))
    s[i--] = '\0';
while (isspace(*s))
    s++;

That should take care of the problem as long as you don't care about mangling up the string like crazy and if you don't care about memory leaks!

link|improve this answer
1  
what heppens if s contains only spaces? ;-) – Serge Dec 9 '08 at 8:11
This will under run if s is zero lenth or contains only spaces. – Binary Worrier Dec 9 '08 at 8:25
feedback

You should be able to do it in-place; stripping whitespace can never cause the string to grow. You might be able to do it without first checking the length of the string, but doing so might be needlessly "clever". You should look into the memmove() function, in addition to the ones @Norman Ramsey mentioned.

link|improve this answer
feedback

If you're on Linux/Windows and have the library glib linked into your program, you can use the the routine g_strstrip().

link|improve this answer
feedback
while(*s && isspace(*s))  

is redundant

while (isspace(*s))  

does the same thing

link|improve this answer
assume you have a string s=" ". where s[1]=0 isspace(0) also true and hence a pointer will get incremented and then it will go for checking isspace(s[2]) which is wrong. Hence to limit s[1]!=0 in otherwords s[1] = *s – lakshmanaraj Mar 6 '09 at 7:47
feedback

Your Answer

 
or
required, but never shown

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