This repository was archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStringTools.hpp
211 lines (178 loc) · 5.37 KB
/
StringTools.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
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
/*# MIT License
# Forked from https://github.com/ferhatgec/stringtools
# Copyright (c) 2020 Ferhat Geçdoğan All Rights Reserved.
# Distributed under the terms of the MIT License.
#*/
#ifndef STRING_TOOLS_HPP
#define STRING_TOOLS_HPP
#include <iostream>
#ifdef _MSC_VER
#include <string> // VisualC++
#else
#include <cstring> // Otherwise
#endif
namespace stringtools {
static std::string EraseAllSubString(std::string & mainString, const std::string & erase) {
size_t pos = std::string::npos;
while((pos = mainString.find(erase)) != std::string::npos) {
mainString.erase(pos, erase.length());
}
return mainString;
}
static std::string FindStringWithReturn(std::string file, std::string str) {
std::string line;
std::ifstream readfile(file.c_str());
if(readfile.is_open()) {
while (std::getline(readfile, line)) {
if(strstr(line.c_str(), str.c_str()))
return line + "\n";
}
readfile.close();
} else {
return "error"; /* Unable to open file */
}
return "null"; /* Not found. */
}
static void replaceAll(std::string& str, const std::string& from, const std::string& to) {
if(from.empty())
return;
size_t start_pos = 0;
while((start_pos = str.find(from, start_pos)) != std::string::npos) {
str.replace(start_pos, from.length(), to);
start_pos += to.length(); // In case 'to' contains 'from', like replacing 'x' with 'yx'
}
}
static bool replace(std::string& str, const std::string& from, const std::string& to) {
size_t start_pos = str.find(from);
if(start_pos == std::string::npos)
return false;
str.replace(start_pos, from.length(), to);
return true;
}
static int IntConverter(const char *s) {
int sum = 0;
char ch;
char sign = *s;
if (*s == '-' || *s == '+') s++;
while ((ch = *s++) >= '0' && ch <= '9') {
sum = sum * 10 - (ch - '0');
}
if (sign != '-') {
sum = -sum;
}
return sum;
}
static int IntConverterWithWhitespace(char* s) {
int sum = 0;
char ch;
std::string conv(s);
s = const_cast<char*>(EraseAllSubString(conv, " ").c_str());
char sign = *s;
if (*s == '-' || *s == '+') s++;
while ((ch = *s++) >= '0' && ch <= '9') {
sum = sum * 10 - (ch - '0');
}
if (sign != '-') {
sum = -sum;
}
return sum;
}
static int Count(std::string s, char ch) {
int count = 0;
for (int i = 0; i < s.size(); i++)
if (s[i] == ch) count++;
return count;
}
static int Counter(const char* str, int type) { // 1 = Vowel, 2 = Consonants, 3 = Numbers, 4 = Special characters
int v = 0, c = 0, n = 0, s = 0;
for (int i = 0; str[i]!='\0'; ++i) {
if (str[i] == 'a' || str[i] == 'e' || str[i] == 'i' || str[i] == 'o' || str[i] == 'u' || str[i] == 'A' ||
str[i] == 'E' || str[i] == 'I' || str[i] == 'O' || str[i] == 'U')
++v;
else if ((str[i] >= 'a' && str[i] <= 'z') || (str[i] >= 'A' && str[i] <= 'Z'))
++c;
else if (str[i] >= '0' && str[i] <= '9')
++n;
else
++s;
}
if(type == 1)
return v;
else if(type == 2)
return c;
else if(type == 3)
return n;
else if(type == 4)
return s;
else
return v;
return 0;
}
static std::string GetBetweenString(std::string oStr, std::string sStr1, std::string sStr2) {
int start = oStr.find(sStr1);
if (start >= 0) {
std::string tstr = oStr.substr(start + sStr1.length());
int stop = tstr.find(sStr2);
if (stop >1)
return oStr.substr(start + sStr1.length(), stop);
else
return "error";
}
else
return "error";
}
static void GetBtwString(std::string oStr, std::string sStr1, std::string sStr2, std::string &rStr) {
int start = oStr.find(sStr1);
if (start >= 0) {
std::string tstr = oStr.substr(start + sStr1.length());
int stop = tstr.find(sStr2);
if (stop >1)
rStr = oStr.substr(start + sStr1.length(), stop);
else
rStr ="error";
}
else
rStr = "error";
}
static std::string Add(std::string a, std::string b) {
std::string temp = "";
int carry = 0;
while (a.length() < b.length()) {
a = "0" + a;
}
while (b.length() < a.length()) {
b = "0" + b;
}
for (int i = a.length() - 1; i >= 0; i--) {
char val = static_cast<char>(((a[i] - 48) + (b[i] - 48)) + 48 + carry);
if (val > 57) {
carry = 1;
val -= 10;
} else {
carry = 0;
}
temp = val + temp;
}
if (carry == 1) {
temp = "1" + temp;
}
while (temp[0] == '0' && temp.length() > 1) {
temp = temp.substr(1);
}
return temp;
}
static int Compare(const char* str_1, const char* str_2) {
const unsigned char *unsigned_str_1 = (const unsigned char *) str_1;
const unsigned char *unsigned_str_2 = (const unsigned char *) str_2;
while (*unsigned_str_1 == *unsigned_str_2 &&
*unsigned_str_1 != '\0') {
unsigned_str_1++;
unsigned_str_2++;
}
return (*unsigned_str_1 > *unsigned_str_2) - (*unsigned_str_1 < *unsigned_str_2);
}
static inline std::string ltrim(std::string s) {
return s.erase(0, s.find_first_not_of(" \t\n\r\f\v"));
}
}
#endif // STRING_TOOLS_HPP