#include <skStringTokenizer.h>
Public Member Functions | |
skStringTokenizer (const skString &str, const skString &delim, bool returnDelims) | |
Constructs a string tokenizer for the specified string. | |
skStringTokenizer (const skString &str, const skString &delim) | |
Constructs a string tokenizer for the specified string. | |
skStringTokenizer (const skString &str) | |
Constructs a string tokenizer for the specified string. | |
skStringTokenizer () | |
Constructor. | |
virtual | ~skStringTokenizer () |
Desstructor. | |
void | init (const skString &str, const skString &delim, bool returnDelims) |
Initialize the tokenizer. | |
bool | hasMoreTokens () |
Tests if there are more tokens available from this tokenizer's string. | |
skString | nextToken () |
Returns the next token from this string tokenizer. | |
skString | nextToken (const skString &delim) |
Returns the next token in this string tokenizer's string. | |
int | countTokens () |
Calculates the number of times that this tokenizer's nextToken method can be called. |
|
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.
|
|
Initialize the tokenizer.
|
|
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.
|