PreviousChar (StringTokenizer function)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Value of previous character and step back one position (StringTokenizer class)

[Introduced in Sirius Mods 7.8]


This method returns the value of the character that precedes the character that is at the tokenizing position, and it steps the tokenizing position back to the preceding character. The tokenizing position is the value returned by NextPosition.

Syntax

%string = stringTokenizer:PreviousChar

Syntax terms

%string A string variable to receive the returned character value.
stringTokenizer A StringTokenizer object variable.

Usage notes

  • The PeekPreviousChar function also returns the value of the next character, but it does not step back the tokenizing position.

Examples

The following sequence of PrintText statements show that the tokenizing position moves after PreviousChar completes but not after PeekPreviousChar completes:

%tok = new %tok:string = 'Example of previousChar' PrintText {~} is {%tok:nextToken} PrintText {~} is {%tok:nextPosition} PrintText {~} is {%tok:previousChar} PrintText {~} is {%tok:nextPosition} PrintText {~} is {%tok:previousChar} PrintText {~} is {%tok:nextPosition} PrintText {~} is {%tok:peekPreviousChar} PrintText {~} is {%tok:nextPosition} PrintText {~} is {%tok:peekPreviousChar}

The result is:

%tok:nextToken is Example %tok:nextPosition is 8 %tok:previousChar is e %tok:nextPosition is 7 %tok:previousChar is l %tok:nextPosition is 6 %tok:peekPreviousChar is p %tok:nextPosition is 6 %tok:peekPreviousChar is p

See also