Methods

StringScanner.SkipToAlpha Method

Skip until a alphabetic character is encountered. Return true if successful.

StringScanner.SkipToAlphaNum Method

Skip until a alphanumeric character is encountered. Return true if successful.

StringScanner.SkipToCharacter Method

Skip until one of the characters specified is encountered. Return true if successful.

StringScanner.SkipToDigit Method

Skip until a digit (0-9) is encountered. Return true if successful.

StringScanner.SkipToString Method

Skip until text matching string is found. Return true if successful.

StringScanner.SkipToStringI Method

Skip until text matching string (case insensitive) is found. Return true if successful.

StringScanner.SkipToToken Method

Skip until a token is encountered. kind is combination of (I-identier,F-function,S-string,D-date,N-number,L-logical,U-unary operator,B-binary,A-array operator or '*' for all) Return true if successful.

StringScanner.SkipToWhitespace Method

Skip until a whitespace character is encountered. Return true if successful.