TDME2 1.9.121
StringTokenizer.h
Go to the documentation of this file.
1
2#pragma once
3
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
9
10using std::string;
11using std::vector;
12
13/**
14 * String tokenizer class
15 * @author Andreas Drewke
16 * @version $Id$
17 */
19{
20
21private:
22 vector<string> tokens;
23 int idx { 0 };
24
25public:
26 /**
27 * Public constructor
28 */
30
31 /**
32 * Tokenize
33 * @param str string to tokenize
34 * @param delimiters delimiters
35 */
36 void tokenize(const string& str, const string& delimiters);
37
38 /**
39 * @return number of tokens
40 */
41 inline int32_t countTokens() {
42 return tokens.size();
43 }
44
45 /**
46 * @return has more tokens
47 */
48 inline bool hasMoreTokens() {
49 return idx != tokens.size();
50 }
51
52 /**
53 * @return next token
54 */
55 inline const string& nextToken() {
56 return tokens[idx++];
57 }
58
59 /**
60 * @return tokens
61 */
62 inline const vector<string>& getTokens() {
63 return tokens;
64 }
65
66};
String tokenizer class.
StringTokenizer()
Public constructor.
void tokenize(const string &str, const string &delimiters)
Tokenize.
const vector< string > & getTokens()