TDME2 1.9.121
StringTools.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <string_view>
5#include <vector>
6
7#include <tdme/tdme.h>
9
10using std::string;
11using std::string_view;
12using std::vector;
13
14/**
15 * String tools class
16 * @author Andreas Drewke
17 * @version $Id$
18 */
20{
21public:
22
23 /**
24 * Checks if string starts with prefix
25 * @param src source string
26 * @param prefix prefix string
27 * @return bool
28 */
29 inline static const bool startsWith(const string& src, const string& prefix) {
30 return src.find(prefix) == 0;
31 }
32
33 /**
34 * Checks if string starts with prefix
35 * @param src source string
36 * @param prefix prefix string
37 * @return bool
38 */
39 inline static const bool viewStartsWith(const string_view& src, const string& prefix) {
40 return src.find(prefix) == 0;
41 }
42
43 /**
44 * Checks if string ends with suffix
45 * @param src source string
46 * @param suffix suffix string
47 * @return bool
48 */
49 inline static const bool endsWith(const string& src, const string& suffix) {
50 return
51 src.size() >= suffix.size() &&
52 src.compare(src.size() - suffix.size(), suffix.size(), suffix) == 0;
53 }
54
55 /**
56 * Checks if string ends with suffix
57 * @param src source string
58 * @param suffix suffix string
59 * @return bool
60 */
61 inline static const bool viewEndsWith(const string_view& src, const string& suffix) {
62 return
63 src.size() >= suffix.size() &&
64 src.compare(src.size() - suffix.size(), suffix.size(), suffix) == 0;
65 }
66
67 /**
68 * Replace char with another char
69 * @param src source string to be processed
70 * @param what what to replace
71 * @param by to replace by
72 * @param beginIndex index to begin with
73 * @return new string
74 */
75 static const string replace(const string& src, const char what, const char by, int beginIndex = 0);
76
77 /**
78 * Replace string with another string
79 * @param src source string to be processed
80 * @param what what to replace
81 * @param by to replace by
82 * @param beginIndex index to begin with
83 * @return new string
84 */
85 static const string replace(const string& src, const string& what, const string& by, int beginIndex = 0);
86
87 /**
88 * Finds first index of given character
89 * @param src source string
90 * @param what what
91 * @return index or -1 if not found
92 */
93 inline static int32_t firstIndexOf(const string& src, char what) {
94 return src.find_first_of(what);
95 }
96
97 /**
98 * Finds first index of characters provided within given string
99 * @param src source string
100 * @param what what
101 * @return index or -1 if not found
102 */
103 inline static int32_t firstIndexOf(const string& src, const string& what) {
104 return src.find_first_of(what);
105 }
106
107 /**
108 * Finds last index of given character
109 * @param src source string
110 * @param what what
111 * @return index or -1 if not found
112 */
113 inline static int32_t lastIndexOf(const string& src, char what) {
114 return src.find_last_of(what);
115 }
116
117 /**
118 * Finds last index of characters provided within given string
119 * @param src source string
120 * @param what what
121 * @return index or -1 if not found
122 */
123 inline static int32_t lastIndexOf(const string& src, const string& what) {
124 return src.find_last_of(what);
125 }
126
127 /**
128 * Returns substring of given string from begin index
129 * @param src source string
130 * @param beginIndex begin index
131 * @return new string
132 */
133 inline static const string substring(const string& src, int32_t beginIndex) {
134 return src.substr(beginIndex);
135 }
136
137 /**
138 * Returns substring of given string from begin index
139 * @param src source string
140 * @param beginIndex begin index
141 * @return new string
142 */
143 inline static const string_view viewSubstring(const string_view& src, int32_t beginIndex) {
144 return src.substr(beginIndex);
145 }
146
147 /**
148 * Returns substring of given string from begin index to end index
149 * @param src source string
150 * @param beginIndex begin index
151 * @param endIndex end index
152 * @return new string
153 */
154 inline static const string substring(const string& src, int32_t beginIndex, int32_t endIndex) {
155 return src.substr(beginIndex, endIndex - beginIndex);
156 }
157
158 /**
159 * Returns substring of given string from begin index to end index
160 * @param src source string
161 * @param beginIndex begin index
162 * @param endIndex end index
163 * @return new string
164 */
165 inline static const string_view viewSubstring(const string_view& src, int32_t beginIndex, int32_t endIndex) {
166 return src.substr(beginIndex, endIndex - beginIndex);
167 }
168
169 /**
170 * Checks if string equals ignoring case
171 * @param string1 string 1
172 * @param string2 string 2
173 * @return equals
174 */
175 static bool equalsIgnoreCase(const string& string1, const string& string2);
176
177 /**
178 * Trim string
179 * @param src source string
180 * @return trimmed string
181 */
182 static const string trim(const string& src);
183
184 /**
185 * Trim string
186 * @param src source string
187 * @return trimmed string
188 */
189 static const string_view viewTrim(const string_view& src);
190
191 /**
192 * Transform string to lower case
193 * @param src source string
194 * @return transformed string
195 */
196 static const string toLowerCase(const string& src);
197
198 /**
199 * Transform string to upper case
200 * @param src source string
201 * @return transformed string
202 */
203 static const string toUpperCase(const string& src);
204
205 /**
206 * Do regex pattern matching
207 * @param src source string to test
208 * @param pattern pattern
209 * @return if patter matches
210 */
211 static bool regexMatch(const string& src, const string& pattern);
212
213 /**
214 * Replace regex pattern with given string
215 * @param src source string to operate on
216 * @param pattern pattern to search
217 * @param by string that will replace pattern occurrances
218 */
219 static const string regexReplace(const string& src, const string& pattern, const string& by);
220
221 /**
222 * Tokenize
223 * @param str string to tokenize
224 * @param delimiters delimiters
225 * @return tokens
226 */
227 static const vector<string> tokenize(const string& str, const string& delimiters);
228
229};
230
String tools class.
Definition: StringTools.h:20
static const bool viewStartsWith(const string_view &src, const string &prefix)
Checks if string starts with prefix.
Definition: StringTools.h:39
static int32_t lastIndexOf(const string &src, char what)
Finds last index of given character.
Definition: StringTools.h:113
static const string_view viewSubstring(const string_view &src, int32_t beginIndex)
Returns substring of given string from begin index.
Definition: StringTools.h:143
static const vector< string > tokenize(const string &str, const string &delimiters)
Tokenize.
static const bool endsWith(const string &src, const string &suffix)
Checks if string ends with suffix.
Definition: StringTools.h:49
static const string_view viewSubstring(const string_view &src, int32_t beginIndex, int32_t endIndex)
Returns substring of given string from begin index to end index.
Definition: StringTools.h:165
static const string trim(const string &src)
Trim string.
Definition: StringTools.cpp:51
static int32_t firstIndexOf(const string &src, char what)
Finds first index of given character.
Definition: StringTools.h:93
static const string regexReplace(const string &src, const string &pattern, const string &by)
Replace regex pattern with given string.
static bool equalsIgnoreCase(const string &string1, const string &string2)
Checks if string equals ignoring case.
Definition: StringTools.cpp:43
static int32_t lastIndexOf(const string &src, const string &what)
Finds last index of characters provided within given string.
Definition: StringTools.h:123
static const string substring(const string &src, int32_t beginIndex, int32_t endIndex)
Returns substring of given string from begin index to end index.
Definition: StringTools.h:154
static const bool viewEndsWith(const string_view &src, const string &suffix)
Checks if string ends with suffix.
Definition: StringTools.h:61
static const string toUpperCase(const string &src)
Transform string to upper case.
Definition: StringTools.cpp:94
static const string_view viewTrim(const string_view &src)
Trim string.
Definition: StringTools.cpp:76
static int32_t firstIndexOf(const string &src, const string &what)
Finds first index of characters provided within given string.
Definition: StringTools.h:103
static const bool startsWith(const string &src, const string &prefix)
Checks if string starts with prefix.
Definition: StringTools.h:29
static const string substring(const string &src, int32_t beginIndex)
Returns substring of given string from begin index.
Definition: StringTools.h:133
static bool regexMatch(const string &src, const string &pattern)
Do regex pattern matching.
static const string toLowerCase(const string &src)
Transform string to lower case.
Definition: StringTools.cpp:88
static const string replace(const string &src, const char what, const char by, int beginIndex=0)
Replace char with another char.
Definition: StringTools.cpp:27