blob: fb5fe67279ad87ba2bdc7aea59a125ea3ca7f6c8 (
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
40
41
42
43
44
45
46
47
48
49
|
#ifndef UTIL_H_15DDCA2D
#define UTIL_H_15DDCA2D
namespace verbly {
template <class InputIterator>
std::string implode(InputIterator first, InputIterator last, std::string delimiter)
{
std::stringstream result;
for (InputIterator it = first; it != last; it++)
{
if (it != first)
{
result << delimiter;
}
result << *it;
}
return result.str();
}
template <class Container>
Container split(std::string input, std::string delimiter)
{
Container result;
while (!input.empty())
{
int divider = input.find(delimiter);
if (divider == std::string::npos)
{
result.push_back(input);
input = "";
} else {
result.push_back(input.substr(0, divider));
input = input.substr(divider+delimiter.length());
}
}
return result;
}
};
#endif /* end of include guard: UTIL_H_15DDCA2D */
|