-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstripstring.hpp
81 lines (76 loc) · 1.81 KB
/
stripstring.hpp
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
#ifndef STRIPSTRING_HPP
#define STRIPSTRING_HPP
#include <string>
void lstrip_spaces_inplace(std::string &s)
{
if (s.size() == 0)
{
return;
}
s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](unsigned char ch) { return !std::isspace(ch); }));
}
void rstrip_spaces_inplace(std::string &s)
{
if (s.size() == 0)
{
return;
}
s.erase(std::find_if(s.rbegin(), s.rend(), [](unsigned char ch) { return !std::isspace(ch); }).base(), s.end());
}
void strip_spaces_inplace(std::string &s)
{
if (s.size() == 0)
{
return;
}
lstrip_spaces_inplace(s);
rstrip_spaces_inplace(s);
}
void lstrip_charset_inplace(std::string &s, std::string &char_set)
{
if (s.size() == 0 || char_set.size() == 0)
{
return;
}
size_t newsize{};
size_t oldsize = s.size();
while (newsize < oldsize)
{
newsize = s.size();
oldsize = newsize;
for (auto c : char_set)
{
s.erase(s.begin(), std::find_if(s.begin(), s.end(), [c = c](char ch) { return ch != c; }));
}
newsize = s.size();
}
}
void rstrip_charset_inplace(std::string &s, std::string &char_set)
{
if (s.size() == 0 || char_set.size() == 0)
{
return;
}
size_t newsize{};
size_t oldsize = s.size();
while (newsize < oldsize)
{
newsize = s.size();
oldsize = newsize;
for (auto c : char_set)
{
s.erase(std::find_if(s.rbegin(), s.rend(), [c = c](char ch) { return ch != c; }).base(), s.end());
}
newsize = s.size();
}
}
void strip_charset_inplace(std::string &s, std::string &char_set)
{
if (s.size() == 0 || char_set.size() == 0)
{
return;
}
lstrip_charset_inplace(s, char_set);
rstrip_charset_inplace(s, char_set);
}
#endif