blob: 70fed852b7d53722f6c184e1bd4c09c41ec92961 (
plain)
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
|
#include <algorithm>
#include "strings.h"
#include "print.h"
using namespace std;
void str_print(const char * str) {
lprtf("%s\n", str_wrap(str).c_str());
}
string str_wrap(const char * str) {
string out;
for (; *str != '\0'; str++) {
if (str[0] == '\n') {
if (str[1] == '\n') {
out += "\n\n";
str++;
} else {
out += " ";
}
continue;
}
out += *str;
}
return out;
}
vector<string> str_split(const string & src, const string & delim) {
if (src.size() == 0) return {};
vector<string> out;
size_t start = 0;
size_t end = src.find(delim);
while (end != string::npos) {
out.push_back(src.substr(start, end - start));
start = end + delim.length();
end = src.find(delim, start);
}
out.push_back(src.substr(start));
return out;
}
string str_lower(const string & input) {
string out = input;
transform(out.begin(), out.end(), out.begin(), [](unsigned char c){ return tolower(c); });
return out;
}
string str_title(const string & input) {
if (input.size() == 0) return "";
string out = str_lower(input);
out[0] = toupper(out[0]);
return out;
}
|