This concrete class performs basic tokenizing/parse functions on a string.
Definition Basic.h:32
unsigned numTokens() const noexcept
Returns the number of tokens parsed to-date.
Definition Basic.h:81
Basic(char *stringToParse)
Constructor. Uses whitespace for token delimiters.
const char * getToken(unsigned n) const noexcept
This method returns the Nth token.
const char * next() noexcept
Returns a pointer to the next token.
Basic(char *stringToParse, const char *delimiterSet)
Constructor. Uses the specified character set for token delimiters.
const char * remaining() const noexcept
Returns a pointer to the portion of the string that has not been tokenized, i.e.
Definition Basic.h:68