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.
|
If you can modify the string:
If you can't modify the string, then you can use basically the same method:
|
|||||||||||||||||||
|
|
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'. |
|||
|
|
|
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().
|
||||
|
|
|
Here's my C mini library for trimming left, right, both, all, in place and separate, and trimming a set of specified characters (or white space by default). contents of strlib.h:
contents of strlib.c:
The one main routine does it all.
It trims in place if src == dst, otherwise,
it works like the |
||||
|
|
|
s was so extremely helpful, I wanted to say I was glad this post was available and to show what I was able to do with the examples. I needed to tokenize a larger string, and then take the substring(s) and find the last one - so I could remove a newline from fgets() call, and also remove the whitespace from the front of that token -- so I could easily compare it with a static string. The first example in the post above got me there, so thank you. Here is how I used the code samples and the output I got.
} Output
|
||||
|
|
|
||||
|
|
A bit late to the game, but I'll throw my routines into the fray. They're probably not the most absolute efficient, but I believe they're correct and they're simple (with
|
|||
|
|
|
Here is my attempt at a simple, yet correct in-place trim function.
|
|||
|
|
|
||||
|
|
Here's a solution similar to @adam-rosenfields in-place modification routine but without needlessly resorting to strlen(). Like @jkramer, the string is left-adjusted within the buffer so you can free the same pointer. Not optimal for large strings since it does not use memmove. Includes the ++/-- operators that @jfm3 mentions. FCTX-based unit tests included.
|
|||||||||
|
|
Its trivial with a regex library, so how "pure" C are we talking? |
|||||
|
|
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). |
|||||
|
|
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 :-) |
|||||||
|
|
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 |
|||
|
|
|
I'm only including code because the code posted so far seems suboptimal (and I don't have the rep to comment yet.)
|
|||
|
|
|
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. |
|||
|
|
|
Most of the answers so far do one of the following:
This version makes only one pass and does not backtrack. Hence it may perform better than the others, though only if it is common to have hundreds of trailing spaces (which is not unusual when dealing with the output of a SQL query.)
|
|||
|
|
|
This is the shortest possible implementation I can think of:
|
|||
|
|
|
These functions will modify the original buffer, so if dynamically allocated, the original pointer can be freed.
|
|||
|
|
|
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)
|
|||||||||
|