-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathStringUtility.h
361 lines (323 loc) · 9.78 KB
/
StringUtility.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
#pragma once
#include <boost/algorithm/string.hpp>
#include "Types.h"
namespace Scan
{
namespace StringUtil
{
/**
@brief UTF8字符串
*/
struct UTF8String
{
String s;
};
/**
@brief 将UTF8字符串转化为ANSI字符串
*/
String convertToString(const UTF8String& src);
/**
@brief 将Unicode字符串转化为ANSI字符串
*/
String convertToString(const WString& src);
/**
@brief 将UTF8字符串转化为Unicode字符串
*/
WString convertToWString(const UTF8String& src);
/**
@brief 将ANSI字符串转化为Unicode字符串
*/
WString convertToWString(const String& src);
/**
@brief 将ANSI字符串转化为UTF8字符串
*/
UTF8String convertToUTF8String(const String& src);
/**
@brief 将Unicode字符串转化为UTF8字符串
*/
UTF8String convertToUTF8String(const WString& src);
/**
@brief 返回一个字符串大写的拷贝
*/
inline String toUpperCopy(const String& s)
{
return boost::algorithm::to_upper_copy(s);
}
/**
@brief 将一个字符串转化为大写
*/
inline void toUpper(String& s)
{
boost::algorithm::to_upper(s);
}
/**
@brief 返回一个小写的拷贝
*/
inline String toLowerCopy(const String& s)
{
return boost::algorithm::to_lower_copy(s);
}
/**
@brief 将字符串转化为小写
*/
inline void toLower(String &s)
{
boost::algorithm::to_lower(s);
}
/**
@brief 返回去掉了左边空白的拷贝串
*/
inline String trimLeftCopy(const String& s)
{
return boost::algorithm::trim_left_copy(s);
}
/**
@brief 去掉字符串左边的空白
*/
inline void trimLeft(String& s)
{
boost::algorithm::trim_left(s);
}
/**
@brief 返回去掉了右边空白的拷贝串
*/
inline String trimRightCopy(const String& s)
{
return boost::algorithm::trim_right_copy(s);
}
/**
@brief 去掉右边的空白
*/
inline void trimRight(String& s)
{
boost::algorithm::trim_right(s);
}
/**
@brief 返回去掉左右空白的拷贝串
*/
inline String trimCopy(const String& s)
{
return boost::algorithm::trim_copy(s);
}
/**
@brief 去掉串的左右空白
*/
inline void trim(String& s)
{
boost::algorithm::trim(s);
}
/**
@brief 是否有一个前缀
@param s 要测试的字符串
@param prefix 前缀串
@param isCaseSensitive 是否大小写敏感
*/
inline bool isStartWith(const String& s, const String& prefix, bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::starts_with(s, prefix) :
boost::algorithm::istarts_with(s, prefix);
}
/**
@brief 是否有一个后缀
*/
inline bool isEndWith(const String& s, const String& postfix, bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::ends_with(s, postfix) :
boost::algorithm::iends_with(s, postfix);
}
/**
@brief 是否包含一个子串
*/
inline bool isContain(const String& s, const String& sub, bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::contains(s, sub) :
boost::algorithm::icontains(s, sub);
}
/**
@brief 比较两个串
*/
inline bool isEqual(const String& s, const String& test, bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::equals(s, test) :
boost::algorithm::iequals(s, test);
}
/**
@brief 返回一个已经替换了一个第一次出现的子串的拷贝串
@param oldSub 要替换的部分
@param newSub 替换成的部分
@return 替换过的拷贝串
*/
inline String replaceFirstCopy(
const String& src,
const String& oldSub,
const String& newSub,
bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::replace_first_copy(src, oldSub, newSub) :
boost::algorithm::ireplace_first_copy(src, oldSub, newSub);
}
/**
@brief 替换字符串中的一个第一次出现的字串
*/
inline void replaceFirst(
String &src,
const String& oldSub,
const String& newSub,
bool isCaseSensitive = true)
{
isCaseSensitive ?
boost::algorithm::replace_first(src, oldSub, newSub) :
boost::algorithm::ireplace_first(src, oldSub, newSub);
}
/**
@brief 返回一个删除了一个第一次出现的字串的拷贝串
*/
inline String eraseFirstCopy(
const String& src,
const String& sub,
bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::erase_first_copy(src, sub) :
boost::algorithm::ierase_first_copy(src, sub);
}
/**
@brief 删除字符串中一个字串第一次出现的部分
*/
inline void eraseFirst(
String &src,
const String& sub,
bool isCaseSensitive = true)
{
isCaseSensitive ?
boost::algorithm::erase_first(src, sub) :
boost::algorithm::ierase_first(src, sub);
}
/**
@brief 返回替换了字符串中某字串最后一次出现的部分的拷贝串
*/
inline String replaceLastCopy(
const String& src,
const String& oldSub,
const String& newSub,
bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::replace_last_copy(src, oldSub, newSub) :
boost::algorithm::ireplace_last_copy(src, oldSub, newSub);
}
/**
@brief 替换字符串中某字串的最后一次出现
*/
inline void replaceLast(
String &src,
const String& oldSub,
const String& newSub,
bool isCaseSensitive = true)
{
isCaseSensitive ?
boost::algorithm::replace_last(src, oldSub, newSub) :
boost::algorithm::ireplace_last(src, oldSub, newSub);
}
/**
@brief 返回字符串删除某字串最后一次出现的拷贝串
*/
inline String eraseLastCopy(
const String& src,
const String& sub,
bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::erase_last_copy(src, sub) :
boost::algorithm::ierase_last_copy(src, sub);
}
/**
@brief 删除字符串中某字串的最后一次出现
*/
inline void eraseLast(
String &src,
const String& sub,
bool isCaseSensitive = true)
{
isCaseSensitive ?
boost::algorithm::erase_last(src, sub) :
boost::algorithm::ierase_last(src, sub);
}
/**
@brief 返回一个替换了字符串中所有某字串后的拷贝
*/
inline String replaceAllCopy(
const String& src,
const String& oldSub,
const String& newSub,
bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::replace_all_copy(src, oldSub, newSub) :
boost::algorithm::ireplace_all_copy(src, oldSub, newSub);
}
/**
@brief 替换字符串中所有某字串
*/
inline void replaceAll(
String &src,
const String& oldSub,
const String& newSub,
bool isCaseSensitive = true)
{
isCaseSensitive ?
boost::algorithm::replace_all(src, oldSub, newSub) :
boost::algorithm::ireplace_all(src, oldSub, newSub);
}
/**
@brief 返回删除了字符串中所有某字串后的拷贝
*/
inline String eraseAllCopy(
const String& src,
const String& sub,
bool isCaseSensitive = true)
{
return isCaseSensitive ?
boost::algorithm::erase_all_copy(src, sub) :
boost::algorithm::ierase_all_copy(src, sub);
}
/**
@brief 删除字符串中所有某字串
*/
inline void eraseAll(
String &src,
const String& sub,
bool isCaseSensitive = true)
{
isCaseSensitive ?
boost::algorithm::erase_all(src, sub) :
boost::algorithm::ierase_all(src, sub);
}
/**
@brief 比较两个字符串的大小
*/
inline bool isLess(
const String& first,
const String& second,
bool isCaseSensitive = true)
{
return
isCaseSensitive ?
boost::algorithm::lexicographical_compare(first, second) :
boost::algorithm::ilexicographical_compare(first, second);
}
/**
@brief 返回字符串分割的拷贝
*/
StringVector splitCopy(const String& s, const String& separator = " ,\t\n");
/**
@brief 分割字符串
*/
void split(StringVector& v, const String& s, const String& separator = " ,\t\n");
}
}