bool isCharInString(const char *charsSet, const char c)
This method returns true if the character 'c' is one of character(s) contained in 'charsSet'; else fa...
const char * stripTrailingChars(const char *s, const char *charsSet)
This method is the same as stripTrailingSpaces(), except the specified character set is used to ident...
const char * stripSpace(const char *s)
This method returns a pointer to the FIRST non-whitespace character in the the specified null-termina...
const char * stripChars(const char *s, const char *charsSet)
This method is the same as stripSpace(), except the specified character set is used to terminate the ...
void removeTrailingChars(char *s, const char *charsSet)
This method is the same as removeTrailingSpaces(), except the specified characters set is used for "w...
const char * stripNotSpace(const char *s)
This method returns a pointer to the FIRST whitespace character in the the specified null-terminated ...
const char * stripTrailingSpace(const char *s)
This method returns a pointer to the LAST non-whitespace character in the the specified null-terminat...
const char * stripNotChars(const char *s, const char *charsSet)
This method is the same as stripNotSpace(), except the specified character set is used to terminate t...
void removeTrailingSpace(char *s)
This method TRUNCATES the specified null-terminated string by eliminating any trailing white space.