What C function, if any, removes all preceding spaces and tabs from a string?
Thanks.
feedback
|
|
In C a string is identified by a pointer, such as
Then we can make our pointer move past any space-like characters:
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 You will need this include to get
Or if you are happy to define your own idea of what is a whitespace character, you can just write an expression:
| |||||||
feedback
|
You just need to give buff enough space. | |||||
feedback
|