![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class performs basic tokenizing/parse functions on a string. More...
This concrete class performs basic tokenizing/parse functions on a string.
A token is a one or more characters separated by one or more delimiter characters. The parsing is a destructive parsing in that it modifies the original string. The tokenizing is done one token at time i.e. when the next() method is called.
#include <Basic.h>
Public Member Functions | |
Basic (char *stringToParse) | |
Constructor. Uses whitespace for token delimiters. | |
Basic (char *stringToParse, const char *delimiterSet) | |
Constructor. Uses the specified character set for token delimiters. | |
const char * | next () noexcept |
Returns a pointer to the next token. | |
const char * | remaining () const noexcept |
Returns a pointer to the portion of the string that has not been tokenized, i.e. | |
const char * | getToken (unsigned n) const noexcept |
This method returns the Nth token. | |
unsigned | numTokens () const noexcept |
Returns the number of tokens parsed to-date. | |
Cpl::Text::Tokenizer::Basic::Basic | ( | char * | stringToParse | ) |
Constructor. Uses whitespace for token delimiters.
Cpl::Text::Tokenizer::Basic::Basic | ( | char * | stringToParse, |
const char * | delimiterSet | ||
) |
Constructor. Uses the specified character set for token delimiters.
|
noexcept |
This method returns the Nth token.
Where N is the zero-based token index, i.e. 0:=first token, 1:=second token, etc. If N is out-of-bound then 0 is returned. Typically this method is called once the entire string has been tokenized.
|
noexcept |
Returns a pointer to the next token.
Returns 0 if no tokens exist, or the string has already been completed tokenized. NOTE: This method is also used to get the 'first' token.
|
inlinenoexcept |
Returns the number of tokens parsed to-date.
|
inlinenoexcept |
Returns a pointer to the portion of the string that has not been tokenized, i.e.
the first character AFTER the delimiter character that marked the end of the current token to End-of-String.