blob: d81ab24255576333afc0ea8692f70290a2cc88d3 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/**
* @file tokens.hpp
* @brief Provides a way to iterate through tokens in a string.
*/
#ifndef TOKENS_HPP_
#define TOKENS_HPP_
#include <string>
/**
* @class tokens
* A class to provide the ability to iterate through parts of a string, with a
* given delimiting character.
*/
class tokens {
private:
/**
* A reference of the string to iterate through.
*/
const std::string& str;
/**
* The delimiting character, to split the string into tokens.
*/
char delim;
public:
/**
* @class iterator
* Provides a method of iterating through the tokens in the string.
*/
class iterator {
public:
/** The string to iterate through. */
const std::string& str;
/** The delimiting character. */
char delim;
/** The current index in the string. */
unsigned int index;
iterator(unsigned int i, const std::string& s = "", char d = 0)
: str(s), delim(d), index(i) {}
inline bool operator!=(const iterator& i) {
return index != i.index;
}
inline iterator& operator++(void) {
index++;
return *this;
}
std::string operator*(void) {
std::string token;
while (index < str.size()) {
if (str[index] == delim)
return token;
else
token += str[index++];
}
return token;
}
};
tokens(const std::string& s, char d)
: str(s), delim(d) {}
inline iterator begin(void) const {
return iterator(0, str, delim);
}
inline iterator end(void) const {
return iterator(str.size() + 1, str, delim);
}
};
#endif // TOKENS_HPP_
|