RestOfString (StringTokenizer function)

From m204wiki
Revision as of 03:25, 16 December 2010 by 198.242.244.228 (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Non-tokenized substring that follows the next token

RestOfString is a member of the StringTokenizer class.

This method returns the current non-tokenized substring of the tokenizer string. This substring starts from the position after the next token (NextPosition), and it includes the remaining characters going forward to the end of the string.

Syntax

  %string = %tok:RestOfString

Syntax terms

%string
A string variable to receive the characters that follow the next token.
%tok
A StringTokenizer object variable.

Usage Notes

  • The RestOfString operation does not advance the NextPosition value.
  • RestOfString depends only on the value of the most recent NextPosition or NextChar call; it is independent of the values of CurrentToken and CurrentTokenPosition.
  • If the value of AtEnd is True, issuing RestOfString is not an error but returns a null string.
  • The StartOfString function returns the substring of the tokenizer string that precedes the first character of the current token (this first-character position is returned by CurrentTokenPosition).

Examples

The following request fragment shows that consecutive RestOfString statements return the same value so do not advance the NextPosition value, and it shows that RestOfString returns a null string if issued when the position is at the end of the string:

    %tok:string = 'restOfString example'
    printText {%tok:nextToken}
    printText {%tok:restOfString}
    printText {%tok:restOfString}
    printText {%tok:nextToken}
    printText {%tok:restOfString} \\

The result is:

    restOfString
     example
     example
    example
     \\