NotAtEnd (StringTokenizer function)

From m204wiki
Revision as of 20:49, 27 October 2012 by Dme (talk | contribs)
Jump to navigation Jump to search

Is present tokenizing position at end of tokenizerstring? (StringTokenizer class)


This method returns a Boolean value that is true if any tokens remain starting from NextPosition.

Syntax

%boolean = stringTokenizer:NotAtEnd

Syntax terms

%boolean An enumeration object of type Boolean to contain the returned value of NotAtEnd. For more information about Boolean enumerations, see "Using Boolean Enumerations".
stringTokenizer A StringTokenizer object expression.

Usage notes

  • The tokenizing position may be after the last token but not necessarily at the end of the token string. In the following code sequence, the return from NotAtEnd is True and the position is not at the end of the string:

    %tok:string = 'example ' %tok:nextPosition = 10 %tok:notAtEnd

  • AtEnd is the reverse of NotAtEnd: it returns a False value if the current tokenizing position is not at the end of the string.

See also