What is the best approach in stripping leading and trailing spaces in C?
|
6
|
|
|
|
|
|
You can do this entirely in place.
|
||||||||||||
|
|
|
Here is how linux kernel does the trimming, called strstrip():
Its basically a better formatted and error-checked version what the previous poster said. |
||||||||||
|
|
|
This question looks as if it might be a homework question, so I'll answer obliquely: look up the man pages for isspace(3) and strlen(3) and use pointer arithmetic. Also depending on the problem at hand you may need malloc(3) to hold space for the result. Don't forget that the representation of a C string includes a trailing 0 byte, often written '\0', which is not counted as part of the length of the string. |
||
|
|
|
|
Here's a version using isspace:
|
|||
|
|
|
|
It is basically a more optimized code (in terms of speed & codesize ). If we need to retain memory space then,
|
|||
|
|
|
|
Here is a more concise and safer version of lakshmanaraj's first function:
|
||||
|
|
|
That should take care of the problem as long as you don't care about mangling up the string like crazy and if you don't care about memory leaks! |
||||
|
|
|
You should be able to do it in-place; stripping whitespace can never cause the string to grow. You might be able to do it without first checking the length of the string, but doing so might be needlessly "clever". You should look into the |
||
|
|
|
|
If you're on Linux/Windows and have the library glib linked into your program, you can use the the routine |
||
|
|
|
|
while(s && isspace(s)) while (isspace(*s)) |
|||
|
|
|
has anyone knows how to write for any function whcich to delete all spaces from string. Sorry for my bad english. :-(( |
||
|
