blob: 8cdad3d69e5a73a936ed7bd4a6404a91448efbbd (
plain) (
blame)
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
|
#ifndef UTIL_H_4AC35025
#define UTIL_H_4AC35025
#include <string>
#include <iterator>
template <class OutputIterator>
void splitStr(
std::string input,
std::string delimiter,
OutputIterator out) {
while (!input.empty()) {
int divider = input.find(delimiter);
if (divider == std::string::npos) {
*out = input;
out++;
input = "";
} else {
*out = input.substr(0, divider);
out++;
input = input.substr(divider+delimiter.length());
}
}
}
template <class Container>
Container splitStr(
std::string input,
std::string delimiter) {
Container result;
splitStr(input, delimiter, std::back_inserter(result));
return result;
}
#endif /* end of include guard: UTIL_H_4AC35025 */
|