-
Notifications
You must be signed in to change notification settings - Fork 6
/
StringUtil.cpp
160 lines (133 loc) · 3.9 KB
/
StringUtil.cpp
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
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "StringUtil.h"
#include <ctype.h>
/**
* Trim string
*
* @param input string to trim
* @return returns trimmed string
*/
std::string StringUtil::trim(const std::string& input){
// If string is empty, there is nothing to look for.
if(input.length()==0){
return "";
}
// Set up temporary
std::string final=input;
// Remove spaces at beginning
int i=0;
while(i<(int)input.length() && input[i] <= ' '){
i++;
}
// String full of spaces, return nothing.
if(i >= (int)input.length()){
return "";
}
if(i>0){
final = input.substr(i, input.length()-i);
}
// Remove spaces at end
i = (int)final.length()-1;
while(i>=0 && final[i] <= ' '){
i--;
}
final = final.substr(0, i+1);
// Return the new string
return final;
}
/**
* Split string
*
* @param input string to split
* @param delimiter delimiter string to trim
* @param results results vector with substrings
* @param trim boolean to indicate trimming or not
* @return returns number of substrings
*/
int StringUtil::split(const std::string& input, const std::string& delimiter, std::vector<std::string>& results, bool doTrim){
int sizeDelim = (int)delimiter.size();
int newPos = (int)input.find(delimiter, 0);
if(newPos < 0){
if(doTrim){
results.push_back(trim(input));
} else {
results.push_back(input);
}
return 0;
}
int numFound = 0;
std::vector<int> positions;
// At the begin is always a marker
positions.push_back(-sizeDelim);
int pos = 0;
while(pos != -1){
numFound++;
pos = (int)input.find(delimiter, pos + sizeDelim);
if(pos != -1){
positions.push_back(pos);
}
}
// At the end is always a marker
positions.push_back((int)input.size());
for(int i=0;i<(int)positions.size()-1;i++){
std::string s;
int start = positions[i] + sizeDelim;
int size = positions[i+1] - positions[i] - sizeDelim;
if(size > 0){
s = input.substr(start, size);
}
if(doTrim){
results.push_back(trim(s));
} else {
results.push_back(s);
}
}
return numFound;
}
std::string StringUtil::substitute(char s, char d, const std::string& str){
std::string tmp = str;
for(int i=0;i<(int)tmp.size();i++){
if(tmp[i] == s){
tmp[i]=d;
}
}
return tmp;
}
// from:
// http://www.codecomments.com/archive272-2005-4-473566.html
void StringUtil::StrSub(std::string& cp, const std::string& sub_this, const std::string& for_this, const int& num_times)
{
int loc = 0;
if (cp.empty())
{
cp = sub_this;
return;
}
for (int i = 0; i != num_times; i++)
{
loc = (int)cp.find(for_this, loc);
if (loc >= 0)
{
cp.replace(loc, for_this.length(), sub_this);
loc += (int)for_this.length();
}
else
{
return;
}
}
}