Substring (StringTokenizer function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 13: Line 13:
<td>A string variable to contain the returned substring. </td></tr>
<td>A string variable to contain the returned substring. </td></tr>
<tr><th>%tok</th>
<tr><th>%tok</th>
<td>A StringTokenizer object variable. </td></tr>
<td>A <var>StringTokenizer</var> object variable. </td></tr>
<tr><th>start</th>
<tr><th>start</th>
<td>The starting byte number in the tokenizing string to return. </td></tr>
<td>The starting byte number in the tokenizing string to return. </td></tr>
Line 32: Line 32:
==Examples==
==Examples==


The following request prints "<tt>nizer Substring example!!!!!</tt>":
The following request prints "<tt>nizer <var>Substring</var> example!!!!!</tt>":
<pre>
<pre>
     begin
     begin
     %tok is object stringtokenizer
     %tok is object stringtokenizer
     %tok = new
     %tok = new
     %tok:string = 'a tokenizer Substring example'
     %tok:string = 'a tokenizer <var>Substring</var> example'
     %sub = %tok:substring(7, 28, pad='!')
     %sub = %tok:substring(7, 28, pad='!')
     printText {~} is {%tok:substring(7, 28, pad='!')}
     printText {~} is {%tok:substring(7, 28, pad='!')}

Revision as of 21:47, 6 February 2011

Specified substring within tokenizing string (StringTokenizer class)


This function returns a substring that is a specified length and starts at a specific position in the tokenizing string. The substring may be padded on the right.

Syntax

%string = stringTokenizer:Substring( position, length, [Pad= c])

Syntax terms

%string A string variable to contain the returned substring.
%tok A StringTokenizer object variable.
start The starting byte number in the tokenizing string to return.
length The number of bytes to return. If the tokenizing string has fewer characters than the requested bytes (starting at the start position), it is either padded to the requested length, or the entire tokenizing string starting at the start position is returned with no padding, depending on the value of the Pad parameter.
Pad=char The character used to pad the result substring on the right if the result is shorter than the requested length. char defaults to a null, which means no padding is done. Pad is a name-required parameter.

Usage notes

  • The length must be a non-negative number. A negative number results in request cancellation.
  • The pad parameter must be either null or a single character. A longer value results in request cancellation in Sirius Mods version 7.2 and in a compilation error in Sirius Mods 7.3 and higher.

Examples

The following request prints "nizer Substring example!!!!!":

    begin
    %tok is object stringtokenizer
    %tok = new
    %tok:string = 'a tokenizer <var>Substring</var> example'
    %sub = %tok:substring(7, 28, pad='!')
    printText {~} is {%tok:substring(7, 28, pad='!')}
    end

See also