#include <skStringTokenizer.h>
Public Methods | |
skStringTokenizer (skString str, skString delim, bool returnDelims) | |
Constructs a string tokenizer for the specified string. More... | |
skStringTokenizer (skString str, skString delim) | |
Constructs a string tokenizer for the specified string. More... | |
skStringTokenizer (skString str) | |
Constructs a string tokenizer for the specified string. More... | |
bool | hasMoreTokens () |
Tests if there are more tokens available from this tokenizer's string. More... | |
skString | nextToken () |
Returns the next token from this string tokenizer. More... | |
skString | nextToken (skString delim) |
Returns the next token in this string tokenizer's string. More... | |
int | countTokens () |
Calculates the number of times that this tokenizer's nextToken method can be called. More... |
|
Constructs a string tokenizer for the specified string. All characters in the delim argument are the delimiters for separating tokens.
|
|
Constructs a string tokenizer for the specified string. The characters in the delim argument are the delimiters for separating tokens. Delimiter characters themselves will not be treated as tokens.
|
|
Constructs a string tokenizer for the specified string. The tokenizer uses the default delimiter set, which is " \t\n\r\f": the space character, the tab character, the newline character, the carriage-return character, and the form-feed character. Delimiter characters themselves will not be treated as tokens.
|
|
Calculates the number of times that this tokenizer's nextToken method can be called. The current position is not advanced.
|
|
Tests if there are more tokens available from this tokenizer's string. If this method returns true, then a subsequent call to nextToken with no argument will successfully return a token.
|
|
Returns the next token in this string tokenizer's string. First, the set of characters considered to be delimiters by this skStringTokenizer object is changed to be the characters in the string delim. Then the next token in the string after the current position is returned. The current position is advanced beyond the recognized token. The new delimiter set remains the default after this call.
|
|
Returns the next token from this string tokenizer.
|