vote up 0 vote down star
1

What C function, if any, removes all preceding spaces and tabs from a string?

Thanks.

flag

62% accept rate
The question title asks 'remove all spaces'; the question body asks 'remove all preceding spaces'. Do you mean 'remove leading blanks and tabs'? Or 'remove all blanks and tabs'? And do you simply need to know where the first non-blank character is found, or do you need to move the characters forcibly to the start position in the string. All are valid requirements - it is not wholly clear which one you are looking for. – Jonathan Leffler Oct 3 at 21:19

2 Answers

vote up 8 vote down check

In C a string is identified by a pointer, such as char *str, or possibly an array. Either way, we can declare our own pointer that will point to the start of the string:

char *c = str;

Then we can make our pointer move past any space-like characters:

while (isspace(*c))
    ++c;

That will move the pointer forwards until it is not pointing to a space, i.e. after any leading spaces or tabs. This leaves the original string unmodified - we've just changed the location our pointer c is pointing at.

You will need this include to get isspace:

#include <ctype.h>

Or if you are happy to define your own idea of what is a whitespace character, you can just write an expression:

while ((*c == ' ') || (*c == '\t'))
    ++c;
link|flag
1  
Technically, this will move the pointer "c" to the first non-space character, assuming it started out at the start of the string. It doesn't change the string at all. I point this out because if you have another pointer to the start of the string, it will still point to the original start of the string which may have spaces in it. To be clear, this technique is greatly preferred, since you're not moving bits around in the string, but you have to be aware you're moving the pointer, not eliminating the spaces. You have to understand pointers well to understand the difference. – dj_segfault Oct 3 at 19:58
Good point, I've hopefully improved the explanation to cover that. – Earwicker Oct 3 at 20:05
vote up 0 vote down
void trim(const char* src, char* buff, const unsigned int sizeBuff)
{
    if(sizeBuff < 1)
    return;

    const char* current = src;
    unsigned int i = 0;
    while(current != '\0' && i < sizeBuff-1)
    {
    	if(*current != ' ' && *current != '\t')
    		buff[i++] = *current; 
    	++current;
    }
    buff[i] = '\0';
}

You just need to give buff enough space.

link|flag
Oops, I thought you wanted to remove "all" spaces and tabs in a given string. I missed "preceding". hope it helps someone else. :) – young Oct 3 at 21:10
You can compress in situ since the output is smaller than the input. – Jonathan Leffler Oct 3 at 21:16

Your Answer

Get an OpenID
or

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