GM6000 Digital Heater Controller Branch: main
SDX-1330
strip.h
Go to the documentation of this file.
1#ifndef Cpl_Text_strip_h_
2#define Cpl_Text_strip_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file contains a collection of methods that provide basic building
16 blocks for parsing 'tokens' with in a null terminated string. It also
17 provide functions for removing leading/trailing whitespace.
18
19 */
20
21
22
23///
24namespace Cpl {
25///
26namespace Text {
27
28
29/** This method returns a pointer to the FIRST non-whitespace character in the
30 the specified null-terminated string.
31 NOTES:
32
33 o This method does NOT modify the original string in any way!
34 o If 's' is null, then null is returned.
35 */
36const char* stripSpace( const char* s );
37
38
39/** This method returns a pointer to the FIRST whitespace character in the
40 the specified null-terminated string.
41 NOTES:
42
43 o This method does NOT modify the original string in any way!
44 o If 's' is null, then null is returned.
45
46
47 This method is useful in finding the 'next' token in a string, for example:
48 @code
49
50 // Returns a pointer to the first token in 'input'
51 const char* token = stripSpace(input)
52
53 // Returns a pointer to the second token in 'input'
54 token = stripSpace(stripNotSpace(token))
55
56 @endcode
57 */
58const char* stripNotSpace( const char* s );
59
60
61/** This method returns a pointer to the LAST non-whitespace character in the
62 the specified null-terminated string.
63
64 NOTES:
65
66 o This method does NOT modify the original string in any way!
67 o If 's' is null, then null is returned.
68 o If the entire string is whitespace, a pointer to the start of
69 the string is returned (i.e. 's' returned)
70 */
71const char* stripTrailingSpace( const char* s );
72
73
74/** This method TRUNCATES the specified null-terminated string by eliminating
75 any trailing white space.
76
77 NOTE: If 's' is null, then nothing is done.
78 */
79void removeTrailingSpace( char* s );
80
81
82/** This method is the same as stripSpace(), except the specified character
83 set is used to terminate the search instead of the standard isspace()
84 characters.
85
86 NOTES:
87
88 o If 's' is null, then null is returned
89 o If 'charsSet' is null, then 's' is returned and nothing is done.
90 */
91const char* stripChars( const char* s, const char* charsSet );
92
93
94/** This method is the same as stripNotSpace(), except the specified character
95 set is used to terminate the search instead of the standard isspace()
96 characters.
97
98 NOTES:
99
100 o If 's' is null, then null is returned
101 o If 'charsSet' is null, then 's' is returned and nothing is done.
102 */
103const char* stripNotChars( const char* s, const char* charsSet );
104
105/** This method is the same as stripTrailingSpaces(), except the specified
106 character set is used to identify the last "non-whitespace" character.
107
108 NOTES:
109
110 o If 's' is null, then null is returned
111 o If 'charsSet' is null, then 's' is returned and nothing is done.
112 o If the entire string is made up of 'charsSet', a pointer to the start
113 of the string is returned (i.e. 's' returned)
114 */
115const char* stripTrailingChars( const char* s, const char* charsSet );
116
117/** This method is the same as removeTrailingSpaces(), except the specified
118 characters set is used for "whitespace"
119 any trailing white space.
120
121 NOTE: If 's' OR 'charsSet' is null, then nothing is done.
122 */
123void removeTrailingChars( char* s, const char* charsSet );
124
125
126/** This method returns true if the character 'c' is one of
127 character(s) contained in 'charsSet'; else false is
128 returned.
129 */
130bool isCharInString( const char* charsSet, const char c );
131
132
133}; // end namespaces
134};
135#endif // end header latch
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.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20