-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathstring.cpp
273 lines (244 loc) · 7.47 KB
/
string.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
// # string
#include "common.hpp"
std::vector<std::string> split(const std::string &s, char delim) {
std::string item;
std::stringstream ss(s);
std::vector<std::string> output;
while (std::getline(ss, item, delim)) {
output.push_back(item);
}
return output;
}
int main() {
// Initialize from string literal.
{
std::string s = "abc";
}
// cout works as expected.
{
std::string s = "abc";
std::stringstream oss;
oss << s;
assert(oss.str() == "abc");
}
// # + for strings
//
// # cat
//
// # concatenate.
//
// Creates a new string.
//
// The only way to do to it in-place without creating a new string seems to be by using stringstream:
// http://stackoverflow.com/questions/662918/how-do-i-concatenate-multiple-c-strings-on-one-line
{
std::string s = "ab";
std::string s1 = "cd";
assert(s + s1 == "abcd");
assert(s + "cd" == "abcd");
assert("cd" + s == "cdab");
}
// length
{
std::string s = "abc";
assert(s.length() == 3);
}
{
std::string s = "abc";
s[0] = 'A';
assert(s == "Abc");
// BAD: no born check! Compiles.
//s[3] = 'd';
}
// # lowercase
//
// http://stackoverflow.com/questions/313970/stl-string-to-lower-case
//
// Boost has a single function: boost::algorithm::to_lower(str);
{
// Best stdlib way with transform:
std::string s = "AbCd1_";
std::transform(s.begin(), s.end(), s.begin(), ::tolower);
assert(s == "abcd1_");
}
// # c_str
//
// Convert std::string to C null terminated char* string.
{
std::string s = "abc";
assert((std::strcmp(s.c_str(), "abc")) == 0);
}
// # substring
{
std::string s = "abcde";
assert(s.substr(1, 3) == "bcd");
}
// # Split at a character into array of strings.
{
// Best stdlib solution for any character:
// http://stackoverflow.com/questions/236129/how-to-split-a-string-in-c
// There are shorters sstream solutions that split at whitespace.
// For Boost it's a one liner.
{
assert((split("01:23::45", ':') == std::vector<std::string>{"01", "23", "", "45"}));
}
}
// # strip
//
// # chomp
//
// # trim
//
// Exact same techniques as removing elements from vectors but for characters.
//
// It's just that those operations are so common on strings...
//
// http://stackoverflow.com/questions/216823/whats-the-best-way-to-trim-stdstring
{
// A single character: remove and erase idiom.
// Single remove_all call in Boost.
{
std::string s = "a bc d";
auto end = s.end();
s.erase(std::remove(s.begin(), end, ' '), end);
assert((s == "abcd"));
}
// Any character in a string: remove_if + custom function. std::ispunct is a typical choice.
// Single liner with boost::remove_if + is_any_of.
{
std::string s = "a,bc. d";
auto end = s.end();
// stdc ispunct:
s.erase(std::remove_if(s.begin(), end, ::ispunct), end);
// stdlib ispunct. Fails without the cast.
//s.erase(std::remove_if(s.begin(), end, (int(*)(int))std::ispunct), end);
assert((s == "abc d"));
}
}
// # getline
//
// Read istream until a any given character, by default newline, and store chars read into a string.
//
// The other major method of getting data from streams is `operator<<`,
// which generaly speaking reads until whitespace. getline is generaly saner.
//
// Returns the stream itself, which allows to:
//
// - chain calls
// - do while(getline) combos, as streams can be converted to bool via the `void*()`
// operator which returns a pointer type which is then converted to a boolean.
{
// Up to newline.
{
std::stringstream ss;
std::string s;
ss << "ab\n\nc";
// The delim is removed from the string.
assert(std::getline(ss, s));
assert(s == "ab");
// Empty
assert(std::getline(ss, s));
assert(s == "");
// No problem if end of stream.
assert(std::getline(ss, s));
assert(s == "c");
// Stream over.
assert(!std::getline(ss, s));
}
// The stream itself is returned.
{
std::stringstream ss;
std::string s;
std::string s2;
ss << "ab\n\nc";
std::getline(std::getline(ss, s), s2);
assert(s == "ab");
assert(s2 == "");
}
// Up to custom char.
{
std::stringstream ss;
std::string s;
ss << "ab::f";
std::getline(ss, s, ':');
assert(s == "ab");
}
// Read stream line-wise.
{
std::stringstream ss;
std::string line;
std::vector<std::string> lines;
ss << "ab\n\nc";
while (getline(ss, line))
lines.push_back(line);
assert((lines == std::vector<std::string>{"ab", "", "c"}));
}
}
// Possible application: build up a huge string step by step.
// May be more efficient than concatenations which always generates new objects.
{
std::stringstream oss;
oss << "ab";
oss << "cd";
assert(oss.str() == "abcd");
}
// # int to string
//
// There are a few standard alternatives.
//
// http://stackoverflow.com/questions/5590381/easiest-way-to-convert-int-to-string-in-c
{
// C++11 solves the question once and for all with a robust one-liner for base types.
//
// It is not intended however for class input.
#if __cplusplus >= 201103L
assert(std::to_string(123) == "123");
#endif
// std::stringstream seems to be the best pre C++11 solution.
//
// It also has the advantage of working for any class that implements `operator<<`.
{
std::stringstream oss;
oss << 123;
assert(oss.str() == "123");
}
// C sprintf.
//
// Works, but uses too many conversion operations.
{
char cs[16];
std::sprintf(cs, "%d", 123);
std::string s = (cs);
assert(s == "123");
}
}
// # string to int
//
// http://stackoverflow.com/questions/7663709/convert-string-to-int-c
{
// Best C++11 error checking option: stoi
#if __cplusplus >= 201103L
assert(std::stoi("123") == 123);
#endif
}
// String from bytes.
// std::string is just basic_string with char type, so easy for char:
// https://stackoverflow.com/questions/1673445/how-to-convert-unsigned-char-to-stdstring-in-c
//
// uint8_t:
// https://stackoverflow.com/questions/4508911/convert-uint8-t-to-stdstring-in-c
{
// Null terminated.
{
uint8_t bytes[]{'a', 'b', 'c', '\0'};
std::string s((const char*)bytes);
assert(s == std::string("abc"));
}
// Explicit length.
{
uint8_t bytes[]{'a', 'b', 'c'};
std::string s((const char*)bytes, 3);
assert(s == std::string("abc"));
}
}
}