Is there a clean, preferably standard method of trimming leading and trailing whitespace from a string in C? I'd roll my own, but I would think this is a common problem with an equally common solution.
|
2
|
|
|
|
|
|
If you can modify the string:
If you can't modify the string, then you can use basically the same method:
|
||||||
|
|
|
include "stdafx.h"include "malloc.h"include "string.h"int main(int argc, char* argv[]) { char ptr = (char)malloc(sizeof(char)*30); strcpy(ptr," Hel lo wo rl d G eo rocks!!! by shahil sucks b i g tim e"); int i = 0, j = 0; while(ptr[j]!='\0') {
} printf("\noutput-%s\n",ptr); return 0; } |
||
|
|
|
|
Use a string library, for instance:
...as you say this is a "common" problem, yes you need to include a #include or so and it's not included in libc but don't go inventing your own hack job storing random pointers and size_t's that way only leads to buffer overflows. |
||
|
|
|
|
My solution. String must be changeable. The advantage above some of the other solutions that it moves the non-space part to the beginning so you can keep using the old pointer, in case you have to free() it later.
This version creates a copy of the string with strndup() instead of editing it in place. strndup() requires _GNU_SOURCE, so maybe you need to make your own strndup() with malloc() and strncpy().
|
|||
|
|
|
|
Update: As @Mark Ransom noted in comments - this breaks when whitespace occurs inside the string. Me bad. Sorry. Using strspn and strcspn (shamelessly borrowing from @Adam Rosenfield, and assuming that you know what "whitespace" is)
|
||||
|
|
|
I'm only including code because the code posted so far seems suboptimal (and I don't have the rep to comment yet.)
|
||
|
|
|
|
Here's one that shifts the string into the first position of your buffer. You might want this behavior so that if you dynamically allocated the string, you can still free it on the same pointer that trim() returns:
I even tested it for correctness:
Source file was trim.c. Compiled with 'cc trim.c -o trim'. |
||
|
|
|
|
I'm not sure what you consider "painless." C strings are pretty painful. We can find the first non-whitespace character position trivially: while (isspace(* p)) p++; We can find the last non-whitespace character position with two similar trivial moves:
while (* q) q++;
do { q--; } while (isspace(* q));
(I have spared you the pain of using the The question now is what do you do with this? The datatype at hand isn't really a big robust abstract |
||
|
|
|
|
Here is a function to do what you want. It should take care of degenerate cases where the string is all whitespace. You must pass in an output buffer and the length of the buffer, which means that you have to pass in a buffer that you allocate.
The if statements in the loops can probably be replaced with isspace(text[i]) or isspace(text[j]) to make the lines a little easier to read. I think that I had them set this way because there were some characters that I didn't want to test for, but it looks like I'm covering all whitespace now :-) |
||||||
|
|
|
|
||||
|
|
|
Personally, I'd roll my own. You can use strtok, but you need to take care with doing so (particularly if you're removing leading characters) that you know what memory is what. Getting rid of trailing spaces is easy, and pretty safe, as you can just put a 0 in over the top of the last space, counting back from the end. Getting rid of leading spaces means moving things around. If you want to do it in place (probably sensible) you can just keep shifting everything back one character until there's no leading space. Or, to be more efficient, you could find the index of the first non-space character, and shift everything back by that number. Or, you could just use a pointer to the first non-space character (but then you need to be careful in the same way as you do with strtok). |
||||
|
|
|
Its trivial with a regex library, so how "pure" C are we talking? |
||
|
