StartOfString (StringTokenizer function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (1 revision) |
||
Line 7: | Line 7: | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th | <tr><th>%string</th> | ||
<td>A string variable to receive the characters that precede the current position. </td></tr> | <td>A string variable to receive the characters that precede the current position. </td></tr> | ||
<tr><th | <tr><th>%tok</th> | ||
<td>A StringTokenizer object variable.</td></tr> | <td>A StringTokenizer object variable.</td></tr> | ||
</table> | </table> |
Revision as of 19:55, 6 February 2011
Substring that precedes first character of current token (StringTokenizer class)
This method returns the substring of the tokenizer string
that precedes the first character of the current token.
Syntax
%string = stringTokenizer:StartOfString
Syntax terms
%string | A string variable to receive the characters that precede the current position. |
---|---|
%tok | A StringTokenizer object variable. |
Usage notes
- StartOfString does not advance the position.
- The substring returned by StartOfString ends at (but does not include) the first character of the current token, the position of which is the value of CurrentTokenPosition. The value of the current token is returned by CurrentToken.
- StartOfString returns a null string if it is issued before a token is found or if the value of NextPosition is 1.
- The RestOfString function returns the substring of the tokenizer string that follows the present tokenizing position.
Examples
The following request fragment shows that consecutive StartOfString statements do not advance the position:
%tok:string = 'A StartOfString example' %tok:findToken:('example') printText {%tok:startOfString} printText {%tok:startOfString}\\
The result is:
A StartOfString A StartOfString \\