diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-11 11:36:09 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-11 11:36:09 -0500 |
commit | 202b5a75428b2405eeff3080cde0e657b76978f9 (patch) | |
tree | 7082022b0331d448fb896d603c960013afcd2413 /include | |
parent | ea60f9f78bac505a5aeeb4d34b927f04ec3121b3 (diff) |
string token iterator
Diffstat (limited to 'include')
-rw-r--r-- | include/tokens.hpp | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/include/tokens.hpp b/include/tokens.hpp new file mode 100644 index 0000000..d81ab24 --- /dev/null +++ b/include/tokens.hpp @@ -0,0 +1,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_ |