PeekPreviousChar (StringTokenizer function): Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 2: | Line 2: | ||
This method returns the value of the character that precedes the character that is at the tokenizing position. | This method returns the value of the character that precedes the character that is at the tokenizing position. | ||
The tokenizing position is the value returned by [[NextPosition (StringTokenizer property)|NextPosition]]. | The tokenizing position is the value returned by <var>[[NextPosition (StringTokenizer property)|NextPosition]]</var>. | ||
After returning the character value, <var>PeekPreviousChar</var> does not change the | After returning the character value, <var>PeekPreviousChar</var> does not change the | ||
Line 23: | Line 23: | ||
<li>If you are not using separators, <var>PeekPreviousChar</var> always returns the | <li>If you are not using separators, <var>PeekPreviousChar</var> always returns the | ||
last character of the last returned token. | last character of the last returned token. | ||
<li>The [[PreviousChar (StringTokenizer function)|PreviousChar]] function also returns the value of the character that precedes the character that is at the tokenizing position, but it steps the tokenizing position back to the preceding character. | <li>The <var>[[PreviousChar (StringTokenizer function)|PreviousChar]]</var> function also returns the value of the character that precedes the character that is at the tokenizing position, but it steps the tokenizing position back to the preceding character. | ||
</ul> | </ul> | ||
==Examples== | ==Examples== | ||
The following sequence of <var>[[Targeted Text statements|PrintText]]</var> statements | The following sequence of <var>[[Targeted Text statements|PrintText]]</var> statements | ||
show that the tokenizing position moves after <var>PreviousChar</var> completes | |||
but not after <var>PeekPreviousChar</var> completes: | but not after <var>PeekPreviousChar</var> completes: | ||
<p class="code">%tok = new | <p class="code">%tok = new | ||
Line 40: | Line 39: | ||
PrintText {~} is {%tok:peekPreviousChar} | PrintText {~} is {%tok:peekPreviousChar} | ||
</p> | </p> | ||
The result is: | |||
<p class="code">{%tok:nextToken} is Example | |||
{%tok:previousChar} is e | |||
{%tok:previousChar} is l | |||
{%tok:peekPreviousChar} is p | |||
{%tok:peekPreviousChar} is p </p> | |||
==See also== | ==See also== | ||
{{Template:StringTokenizer:PeekPreviousChar footer}} | {{Template:StringTokenizer:PeekPreviousChar footer}} |
Revision as of 00:22, 6 July 2012
Value of previous character (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.
The tokenizing position is the value returned by NextPosition.
After returning the character value, PeekPreviousChar does not change the tokenizing position, which remains what it was when PeekPreviousChar was called.
Syntax
%string = stringTokenizer:PeekPreviousChar
Syntax terms
%string | A string variable to receive the value of the character that precedes the character at the tokenizing position. |
---|---|
stringTokenizer | A StringTokenizer object expression. |
Usage notes
- If you are not using separators, PeekPreviousChar always returns the last character of the last returned token.
- The PreviousChar function also returns the value of the character that precedes the character that is at the tokenizing position, but it steps the tokenizing position back to the preceding character.
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 peekPreviousChar' PrintText {~} is {%tok:nextToken} PrintText {~} is {%tok:previousChar} PrintText {~} is {%tok:previousChar} PrintText {~} is {%tok:peekPreviousChar} PrintText {~} is {%tok:peekPreviousChar}
The result is:
{%tok:nextToken} is Example {%tok:previousChar} is e {%tok:previousChar} is l {%tok:peekPreviousChar} is p {%tok:peekPreviousChar} is p