vote up 2 vote down star

Briefly:

I'm after the equivalent of .NET's String.Trim in C using the win32 and standard C api (compiling with MSVC2008 so I have access to all the C++ stuff if needed, but I am just trying to trim a char*).

Given that there is strchr, strtok, and all manner of other string functions, surely there should be a trim function, or one that can be repurposed...

Thanks

flag

78% accept rate

6 Answers

vote up 3 vote down check

There is no standard library function to do this, but it's not too hard to roll your own. There is an existing question on SO about doing this that was answered with source code.

link|flag
Thanks for that. I find it retarded that there's no library function (if everyone rolls their own then they're all going to mishandle unicode, etc in various different ways), but I guess it is what it is... – Orion Edwards Mar 18 at 0:43
C's string handling is awkward, more so with Unicode. C++ patches it with std::string, but making strings natural requires a redesign. C, despite all its virtues, is far from being a perfect language. – David Thornley Mar 18 at 14:17
Heh. C was invented in '72. Unicode didn't come along until the '90s. For most of C's history there was nothing but ASCII, and str[x]='\0'; would do the job just fine. – T.E.D. Mar 18 at 16:46
vote up 4 vote down

You can use the standard isspace() function in ctype.h to achieve this. Simply compare the beginning and end characters of your character array until both ends no longer have spaces.

"spaces" include:

' ' (0x20) space (SPC)

'\t' (0x09) horizontal tab (TAB)

'\n' (0x0a) newline (LF)

'\v' (0x0b) vertical tab (VT)

'\f' (0x0c) feed (FF)

'\r' (0x0d) carriage return (CR)

although there is no function which will do all of the work for you, you will have to roll your own solution to compare each side of the given character array repeatedly until no spaces remain.

Edit:

Since you have access to C++, Boost has a trim implementation waiting for you to make your life a lot easier.

link|flag
I don't see what's wrong with this but ok, I've got big shoulders and a lot of reputation to spare :) – John T Mar 18 at 0:40
I don't believe there is anything wrong with this. So +1 :) – Stephan202 Mar 18 at 0:50
vote up -3 vote down

Easiest thing to do is a simple loop. I'm going to assume that you want the trimmed string returned in place.

char *
strTrim(char * s){
    int ix, jx;
    int len ;
    char * buf 
    len = strlen(s);  /* possibly should use strnlen */
    buf = (char *) malloc(strlen(s)+1);

    for(ix=0, jx=0; ix < len; ix++){
       if(!isspace(s[ix]))
          buf[jx++] = s[ix];

    buf[jx] = '\0';
    strncpy(s, buf, jx);  /* always looks as far as the null, but who cares? */
    free(buf);            /* no good leak goes unpunished */
    return s;             /* modifies s in place *and* returns it for swank */
 }

This gets rid of embedded blanks too, if String.Trim doesn't then it needs a bit more logic.

link|flag
It's hardly "modifying in place" if you malloc a new buffer and then copy it back in! – Andrew Grant Mar 18 at 0:50
it's modified in place as far as the interface is concerned. – Charlie Martin Mar 18 at 3:07
yeah, good luck selling that one in your next interview :) – Andrew Grant Mar 18 at 6:45
Why so complex? Why not just loop from line to first non-empty character and replace spaces with 0? Very inefficient piece of code. That's Java way of coding, not a C one. – qrdl Mar 18 at 7:40
@Andrew, I don't go to interviews, I give interviews. @qrdl, then you'd have an array of char that started with \0. This in C is called a "zero length string". – Charlie Martin Mar 18 at 17:24
show 4 more comments
vote up 1 vote down

Surprised to see such implementations. I usually do trim like this:

char *trim(char *s) {
    char *ptr;
    if (!s)
        return NULL;   // handle NULL string
    if (!*s)
        return s;      // handle empty string
    for (ptr = s + strlen(s) - 1; (ptr >= s) && isspace(*ptr); --ptr);
    ptr[1] = '\0';
    return s;
}

It is fast and reliable - serves me many years.

link|flag
Oh, i think that can cause a buffer underrun, consider this: char buffer[] = " "; trim(buffer); Then you at least reading buffer[-1], and if it is randomly a white space, you'll even write out side of your buffer. – quinmars Mar 18 at 16:06
Nice one! I've added extra check for this. Will check my production code as well :) – qrdl Mar 18 at 16:34
vote up -1 vote down

hi guys, why all that work? this trims only the right part of the string, in case you want to keep the embedded spaces.

void strtrim_right(char *string)

{

  int len, cont;
  len= strlen(string);

  while (isspace(string[len-1]))         
  { 
     len--;
  }

  string[len]= '\0';

}

link|flag
The equivalent of .NET's String.Trim removes leading and trailing occurrences of a character in a specified set. – Michael Foukarakis Sep 16 at 6:17
vote up 0 vote down

This made me want to write my own - I didn't like the ones that had been provided. Seems to me there should be 3 functions.

char *ltrim(char *s)
{
    while(isspace(*s)) s++;
    return s;
}

char *rtrim(char *s)
{
    char* back = s + strlen(s);
    while(isspace(*--back));
    *(back+1) = '\0';
    return s;
}

char *trim(char *s)
{
    return rtrim(ltrim(s)); 
}
link|flag

Your Answer

Get an OpenID
or

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