Spaces (StringTokenizer property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 19: Line 19:
<tr><th>%string</th>
<tr><th>%string</th>
<td>A string variable to contain the returned value of the current whitespace characters or to be set as the new value(s). The default value for a new tokenizer instance is a blank character.
<td>A string variable to contain the returned value of the current whitespace characters or to be set as the new value(s). The default value for a new tokenizer instance is a blank character.
  If you are setting Spaces, each character in the string is a space character &mdash; that is, you may not separate characters &mdash; and no character may repeat (except for apostrophe, which may be doubled). </td></tr>
  If you are setting <var>Spaces</var>, each character in the string is a space character &mdash; that is, you may not separate characters &mdash; and no character may repeat (except for apostrophe, which may be doubled). </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>
</table>
</table>
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>The Spaces characters are initially settable in the [[New (StringTokenizer constructor)|New]] call that creates the tokenizer instance.
<li>The <var>Spaces</var> characters are initially settable in the [[New (StringTokenizer constructor)|New]] call that creates the tokenizer instance.
<li>No character can be one of the Spaces characters and also
<li>No character can be one of the <var>Spaces</var> characters and also
one of either the Quotes characters or the TokenChars characters.
one of either the Quotes characters or the TokenChars characters.
</ul>
</ul>
==Examples==
==Examples==


In the following example, a Stringtokenizer object is instantiated
In the following example, a <var>String</var>tokenizer object is instantiated
with the default parameter settings for the New constructor.
with the default parameter settings for the New constructor.
Then the input string's tokens are returned in sequence:
Then the input string's tokens are returned in sequence:
Line 53: Line 53:
If instead the tokenizer object is instantiated with a comma as the space character
If instead the tokenizer object is instantiated with a comma as the space character
<br>
<br>
(<tt>%tok = new(Spaces=',')</tt>), the resulting tokens are:
(<tt>%tok = new(<var>Spaces</var>=',')</tt>), the resulting tokens are:
<pre>
<pre>
     %tok:nextToken is Bad
     %tok:nextToken is Bad

Revision as of 21:47, 6 February 2011

Characters to be interpreted as token-delimiting whitespace (StringTokenizer class)


This readWrite property returns or sets the characters that are recognized as "whitespace"characters, that is, as characters that separate tokens. Such a character is also called a "non-token delimiter," because it is a delimiter that is not itself a token.

You can specify "token delimiters," which are delimiters that are also tokens, using the TokenChars property or the New constructor TokenChars parameter.

One or multiple consecutive whitespace characters mark the end or beginning of a token, except when these spaces are part of a quoted region. In that case, the spaces become non-delimiters.

Syntax

%currentString = stringTokenizer:Spaces stringTokenizer:Spaces = newString

Syntax terms

%string A string variable to contain the returned value of the current whitespace characters or to be set as the new value(s). The default value for a new tokenizer instance is a blank character. If you are setting Spaces, each character in the string is a space character — that is, you may not separate characters — and no character may repeat (except for apostrophe, which may be doubled).
%tok A StringTokenizer object variable.

Usage notes

  • The Spaces characters are initially settable in the New call that creates the tokenizer instance.
  • No character can be one of the Spaces characters and also one of either the Quotes characters or the TokenChars characters.

Examples

In the following example, a Stringtokenizer object is instantiated with the default parameter settings for the New constructor. Then the input string's tokens are returned in sequence:

    %tok is object stringtokenizer
    %tok = new
    %tok:string = 'Bad,F  ?3mO ,7,{x Z}'
    repeat while not %tok:atEnd
       printText {~} is {%tok:nextToken}
    end repeat

The resulting tokens, which were delimited by the default space character (blank), are:

    %tok:nextToken is Bad,F
    %tok:nextToken is ?3mO
    %tok:nextToken is ,7,{x
    %tok:nextToken is Z}

If instead the tokenizer object is instantiated with a comma as the space character
(%tok = new(Spaces=',')), the resulting tokens are:

    %tok:nextToken is Bad
    %tok:nextToken is F  ?3mO
    %tok:nextToken is 7
    %tok:nextToken is {x Z}

See also