vote up 0 vote down star
1

What is the easiest and most efficient way to remove spaces from a string in C?

Thanks.

flag

5  
Easiest and most efficient are not necessarily the same – Alan H Nov 13 at 0:09

5 Answers

vote up 9 vote down check

Easiest and most efficient don't usually go together...

Here's a possible solution (untested):

void RemoveSpaces(char* source)
{
  char* i = source;
  char* j = source;
  while(*j != 0)
  {
    *i = *j++;
    if(*i != ' ')
      i++;
  }
  *i = 0;
}
link|flag
2  
What happens if the input source was initialized from a string literal? – Suppressingfire Nov 13 at 1:11
2  
@Suppressingfire: assuming you mean RemoveSpaces("blah");, and not char a[] = "blah"; RemoveSpaces(a);, then undefined behaviour. But that's not the fault of this code. It is not recommended to pass a read-only string to a function which is documented to modify the string passed to it (by, for example, removing spaces) ;-) – Steve Jessop Nov 13 at 1:25
vote up 2 vote down
#include <ctype>

char * remove_spaces(char * source, char * target)
{
     while(*source++ && *target)
     {
        if (!isspace(*source)) 
             *target++ = *source;
     }
     return target;
}

Notes;

  • This doesn't handle Unicode.
link|flag
1  
Won't this skip the first character? – Aaron Nov 13 at 0:17
@Aaron: Yup. Fixed. – quark Nov 13 at 0:18
1  
You should cast the value passed to isspace to unsigned char, since that function is defined to accept a value either in the range of unsigned char, or EOF. – caf Nov 13 at 0:22
vote up 1 vote down

In C, you can replace some strings in-place, for example a string returned by strdup():

char *str = strdup(" a b c ");

char *write = str, *read = str;
do {
   if (*read != ' ')
       *write++ = *read;
} while (*read++);

printf("%s\n", str);

Other strings are read-only, for example those declared in-code. You'd have to copy those to a newly allocated area of memory and fill the copy by skipping the spaces:

char *oldstr = " a b c ";

char *newstr = (char*) malloc(strlen(oldstr)+1);
char *np = newstr, *op = oldstr;
do {
   if (*op != ' ')
       *np++ = *op;
} while (*op++);

printf("%s\n", newstr);

You can see why people invented other languages ;)

link|flag
Your second example forgets to properly terminate the destination string. – caf Nov 13 at 0:20
..and your first example doesn't do the right thing at all (eg if the string starts off with two non-space characters). – caf Nov 13 at 0:21
@caf: The while loop will run for the \0 terminator, because it's while (*(op++)) and not while (*(++op)) – Andomar Nov 13 at 0:22
@caf: You're right about the first example, edited now – Andomar Nov 13 at 0:25
That's true, which means the it's still buggy, because it skips the first character regardless of whether it's a space or not. – caf Nov 13 at 0:45
show 2 more comments
vote up 0 vote down

I assume the C string is in a fixed memory, so if you replace spaces you have to shift all characters.

The easiest seems to be to create new string and iterate over the original one and copy only non space characters.

link|flag
vote up 0 vote down

Braces are unnecessary:

do while(isspace(*s)) s++; while(*d++ = *s++);

The above should be perfectly safe.

But, if you can risk some undefined behavior, and never have empty strings, you can get rid of the body:

while(*(d+=!isspace(*s++)) = *s);

Heck, if by space you mean just space character, so much "bloat" can be removed:

while(*(d+=*s++!=' ')=*s);

Don't use that in production :)

link|flag
Interesting, the first two function on my machine. But I guess all of these are undefined, since using s++ and *s in one statement results in undefined behavior? – Andomar Nov 13 at 0:54
make sure that you aren't beyond the end of the string when dereferencing it. – Casey Nov 13 at 0:59
@Andomar: First one is completely safe and sound. Last two are sketchy indeed (tested in GCC4.2). – porneL Nov 13 at 1:50

Your Answer

Get an OpenID
or
never shown

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