|
First
|
Resets the parser to the beginning of the Text string. The method returns TRUE if a token was found at the beginning (ignoring delimiters, of course).
|
|
IsADelimiter(Char)
|
Returns true if character is a delimiter
|
|
IsAToken(Char)
|
Returns true if character is a token (i.e., is not a delimiter)
|
|
Last
|
Moves the parser to the end of the Text string. The method returns TRUE if a token was found at the end (ignoring delimiters, of course).
|
|
Next
|
Moves the parser to the next token in the Text string. The method returns TRUE if a token was found (ignoring delimiters, of course).
|
|
Previous
|
Moves the parser to the previous token in the Text string. The method returns TRUE if a token was found (ignoring delimiters, of course).
|
|
SetRestOfText(String)
|
Sets the RestOfText property.
|
|
SetToken(String)
|
Sets the Token property.
|
|
SkipCharacters(Integer)
|
Skips characters until the SkipTest character is found.
|
|
SkipDelimiters(Integer)
|
Skips the Delimiters in the Text string at the current Position until a token character is found.
The Step parameter specifies how many characters to skip.
|
|
SkipText(Integer)
|
Skips characters in the Text string at the current Position until a delimitere character is found.
The Step parameter specifies how many characters to skip.
|