FindToken (StringTokenizer function): Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Template:StringTokenizer:FindToken subtitle}} | {{Template:StringTokenizer:FindToken subtitle}} | ||
This [[Notation conventions for methods#Callable functions|callable]] method returns a <var>Boolean | This [[Notation conventions for methods#Callable functions|callable]] method returns a <var>[[Boolean enumeration]]</var> value that indicates whether | ||
it finds a specified token. | it finds a specified token. The value is <code>True</code> if the token is found; otherwise it is <code>False</code>. | ||
The value is <code>True</code> if the token is found; | The search starts from the tokenizing position, the value of which is returned by <var>[[NextPosition (StringTokenizer property)|NextPosition]]</var>. | ||
otherwise it is <code>False</code>. | |||
The search starts from the tokenizing position, | |||
the value of which is returned by <var>[[NextPosition (StringTokenizer property)|NextPosition]]</var>. | |||
If the token is found, the position in | If the token is found, the position in the string is advanced past the found token, and <var>[[CurrentToken (StringTokenizer function)|CurrentToken]]</var> | ||
the string is advanced past the found token, and <var>[[CurrentToken (StringTokenizer function)|CurrentToken]]</var> | |||
will return the found token. | will return the found token. | ||
Otherwise, <var>[[AtEnd (StringTokenizer function)|AtEnd]]</var> is set to <code>True</code>, and <var>CurrentToken</var> | Otherwise, <var>[[AtEnd (StringTokenizer function)|AtEnd]]</var> is set to <code>True</code>, and <var>CurrentToken</var> | ||
is set to the last token at the end of the string. | is set to the last token at the end of the string. | ||
==Syntax== | ==Syntax== | ||
Line 27: | Line 16: | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>%boolean</th> | <tr><th>%boolean</th> | ||
<td>An enumeration object of type <var>Boolean</var> to contain the returned value of <var>FindToken</var> | <td>An enumeration object of type <var>Boolean</var> to contain the returned value of <var>FindToken</var>.</td></tr> | ||
<tr><th>stringTokenizer</th> | <tr><th>stringTokenizer</th> | ||
Line 44: | Line 31: | ||
<li>The <var>NextToken</var> and <var>[[PeekToken (StringTokenizer function)|PeekToken]]</var> | <li>The <var>NextToken</var> and <var>[[PeekToken (StringTokenizer function)|PeekToken]]</var> | ||
functions also return the next token. | functions also return the next token. Like <var>FindToken</var>, <var>NextToken</var> | ||
Like <var>FindToken</var>, <var>NextToken</var> | |||
advances the tokenizing position to the character or position following that token. | advances the tokenizing position to the character or position following that token. | ||
<var>PeekToken</var>, however, does not advance the tokenizing position. | <var>PeekToken</var>, however, does not advance the tokenizing position. | ||
Line 55: | Line 41: | ||
<p class="code">%tok = new(tokenchars='-') | <p class="code">%tok = new(tokenchars='-') | ||
%tok:string = 'Content-Transfer-Encoding: 7bit' | %tok:string = 'Content-Transfer-Encoding: 7bit' | ||
PrintText {~} is {%tok:findToken('Transfer')} | [[Targeted Text statements#AuditText, PrintText, and TraceText|PrintText]] {~} is {%tok:findToken('Transfer')} | ||
PrintText {~} is {%tok:findToken('8bit')} | [[Targeted Text statements#AuditText, PrintText, and TraceText|PrintText]] {~} is {%tok:findToken('8bit')} | ||
PrintText {~} is {%tok:AtEnd} | PrintText {~} is {%tok:AtEnd} | ||
PrintText {~} is {%tok:currentToken} | PrintText {~} is {%tok:currentToken} | ||
Line 68: | Line 54: | ||
</p> | </p> | ||
'''Note:''' | '''Note:''' | ||
Printing an enumeration value is described in the <var>ToString</var> property discussion in [[Enumerations#printenum|"Usage notes"]]. | |||
Printing an enumeration value is described in [[Enumerations#printenum| | |||
==See also== | ==See also== | ||
{{Template:StringTokenizer:FindToken footer}} | {{Template:StringTokenizer:FindToken footer}} |
Revision as of 17:32, 15 November 2012
Search for specified token (StringTokenizer class)
This callable method returns a Boolean enumeration value that indicates whether
it finds a specified token. The value is True
if the token is found; otherwise it is False
.
The search starts from the tokenizing position, the value of which is returned by NextPosition.
If the token is found, the position in the string is advanced past the found token, and CurrentToken
will return the found token.
Otherwise, AtEnd is set to True
, and CurrentToken
is set to the last token at the end of the string.
Syntax
[%boolean =] stringTokenizer:FindToken( string) Throws MismatchedQuote
Syntax terms
%boolean | An enumeration object of type Boolean to contain the returned value of FindToken. |
---|---|
stringTokenizer | A StringTokenizer object expression. |
string | A string that is the token to be located. |
Usage notes
- For a new StringTokenizer instance, issuing FindToken, NextToken, or SkipTokens is required before CurrentToken may be issued without error.
- The NextToken and PeekToken functions also return the next token. Like FindToken, NextToken advances the tokenizing position to the character or position following that token. PeekToken, however, does not advance the tokenizing position.
Examples
The following code fragment shows a FindToken call that locates its target, then a FindToken call that does not locate its target:
%tok = new(tokenchars='-') %tok:string = 'Content-Transfer-Encoding: 7bit' PrintText {~} is {%tok:findToken('Transfer')} PrintText {~} is {%tok:findToken('8bit')} PrintText {~} is {%tok:AtEnd} PrintText {~} is {%tok:currentToken}
The result is:
%tok:findToken('Transfer') is True %tok:findToken('8bit') is False %tok:AtEnd is True %tok:currentToken is 7bit
Note: Printing an enumeration value is described in the ToString property discussion in "Usage notes".