PeekPreviousChar (StringTokenizer function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:StringTokenizer:PeekPreviousChar subtitle}}
{{Template:StringTokenizer:PeekPreviousChar subtitle}}


This page is [[under construction]].
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 <var>[[NextPosition (StringTokenizer property)|NextPosition]]</var>.
 
<var>PeekPreviousChar</var> does not change the tokenizing position.
 
==Syntax==
==Syntax==
{{Template:StringTokenizer:PeekPreviousChar syntax}}
{{Template:StringTokenizer:PeekPreviousChar syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%string</th><td>string</td></tr>
<tr><th>%string</th>
<td>A string variable to receive the value of the character that precedes the character at the tokenizing position. </td></tr>
 
<tr><th>stringTokenizer</th>
<tr><th>stringTokenizer</th>
<td>StringTokenizer object</td></tr>
<td>A <var>StringTokenizer</var> object expression.</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>If you're 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 <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
show that the tokenizing position moves after <var>PreviousChar</var> completes
but not after <var>PeekPreviousChar</var> completes:
<p class="code">%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}
</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}}

Latest revision as of 20:34, 15 November 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.

PeekPreviousChar does not change the tokenizing position.

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

See also