Public Member Functions | |
Tokenizer (string s, string separators, bool retained) | |
Constructor. | |
bool | HasMore () |
Indicates whether there are tokens left. | |
string | Next () |
Returns the subsequent token. |
DotNX::Core::Tokenizer::Tokenizer | ( | string | s, | |
string | separators, | |||
bool | retained | |||
) |
Constructor.
s | The string to be split. | |
separators | A string containing the separators. | |
retained | If true each separator is considered a token. |
bool DotNX::Core::Tokenizer::HasMore | ( | ) |
Indicates whether there are tokens left.
true
if the string's end hasn't been reached, false
otherwise. string DotNX::Core::Tokenizer::Next | ( | ) |
Returns the subsequent token.