-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstringUtils.cpp
218 lines (204 loc) · 3.57 KB
/
stringUtils.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
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
#include "stringUtils.h"
string stringUtils::msgNick(string message)
{
string result;
result = message.substr(1,message.find("!")-1);
return result;
}
string stringUtils::msgChannel(string message)
{
string result;
size_t pos = message.find("PRIVMSG ")+8;
result = message.substr(pos,message.find(" ", pos)-pos);
if(result.at(0) != '#')
{
result = msgNick(message);
}
return result;
}
vector<string> stringUtils::msgWords(string message)
{
size_t pos = message.find(" :") + 2;
return tokenize(message.substr(pos));
}
vector<string> stringUtils::tokenize(string message)
{
vector<string> result;
istringstream iss(message);
string current;
while(iss >> current)
{
result.push_back(current);
}
return result;
}
vector<string> stringUtils::split(vector<string> words, string seperator)
{
vector<string> result;
vector<string> current;
for(int i=0; i<words.size(); ++i)
{
if(words.at(i) == seperator && !current.empty())
{
result.push_back(stringUtils::joinWords(current));
current.clear();
}
else
{
current.push_back(words.at(i));
}
}
if(!current.empty())
{
result.push_back(stringUtils::joinWords(current));
}
return result;
}
int stringUtils::parseTime(string time)
{
int result = 0;
string current = time;
int multiplier = 0;
while(current.length())
{
char lastChar = current.at(current.length()-1);
if(charIsNum(lastChar))
{
int i = 1;
while(i <= current.length() && charIsNum(current.at(current.length()-i)))
{
++i;
}
string number = current.substr(current.length()+1-i,i);
current.erase(current.length()+1-i,i);
result += multiplier * stringUtils::fromString<int>(number);
}
else
{
if(lastChar == 's')
{
multiplier = 1;
}
else if(lastChar == 'm')
{
multiplier = 60;
}
else if(lastChar == 'h')
{
multiplier = 3600;
}
else if(lastChar == 'd')
{
multiplier = 86400;
}
else
{
return 0;
}
current.erase(current.end()-1);
}
}
return result;
}
bool stringUtils::charIsNum(char character)
{
if(character >= '0' && character <= '9')
{
return true;
}
else
{
return false;
}
}
string stringUtils::joinWords(vector<string> words)
{
string result = "";
for(int i=0; i<words.size(); ++i)
{
result += words.at(i);
if(i < words.size() - 1)
{
result += " ";
}
}
return result;
}
string stringUtils::stripProtocol(string url)
{
size_t found;
found = url.find("://");
if(found != string::npos)
{
url.erase(0, found+3);
}
return url;
}
string stringUtils::urlHostname(string url)
{
url = stripProtocol(url);
size_t found;
found = url.find("/");
if(found != string::npos)
{
url.erase(found);
}
found = url.find(":");
if(found != string::npos)
{
url.erase(found);
}
return url;
}
string stringUtils::urlPath(string url)
{
url = stripProtocol(url);
size_t found;
found = url.find("/");
if(found != string::npos)
{
url.erase(0, found);
return url;
}
else
{
return "/";
}
}
string stringUtils::urlPort(string url)
{
url = stripProtocol(url);
size_t found;
found = url.find("/");
if(found != string::npos)
{
url.erase(found);
}
found = url.find(":");
if(found != string::npos)
{
return url.erase(0, found+1);
}
else
{
return "80"; //default to returning the http port
}
}
string stringUtils::toLower(string originalString)
{
string s = originalString;
transform(s.begin(), s.end(), s.begin(), (int(*)(int)) tolower);
return s;
}
int stringUtils::findWord(vector<string> haystack, string needle)
{
int i;
for(i=0; i<haystack.size(); ++i)
{
if(haystack.at(i) == needle)
{
return i;
}
}
return -1;
}