RemoveQuotes (StringTokenizer property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 29: Line 29:
returns <tt>quotes example</tt>, removing the double quotation marks
returns <tt>quotes example</tt>, removing the double quotation marks
from the tokenizer string because that is the default behavior.
from the tokenizer string because that is the default behavior.
Then, after <var>RemoveQuotes</var> is reset to <tt>False</tt>, the next peekToken call
Then, after <var>RemoveQuotes</var> is reset to <code>False</code>, the next peekToken call
displays the returned token value with its quotation
displays the returned token value with its quotation
marks (<tt>"quotes example"</tt>):
marks (<tt>"quotes example"</tt>):

Revision as of 21:02, 5 July 2012

Whether to remove quote characters around returned values of quoted tokens (StringTokenizer class)


This readWrite property returns or sets the Boolean value that indicates whether to remove the quote characters from the returned values of quoted tokens. The default value for a new tokenizer is True.

Syntax

%currentBoolean = stringTokenizer:RemoveQuotes stringTokenizer:RemoveQuotes = newBoolean

Syntax terms

%currentBoolean A Boolean enumeration object to contain the returned value of RemoveQuotes. For more information about Boolean enumerations, see "Using Boolean Enumerations".
stringTokenizer A StringTokenizer object expression.
newBoolean The Boolean value to assign to stringTokenizer's RemoveQuotes property.

Usage notes

  • The Quotes property returns or resets the values of the current quotation characters. The Quotes characters are initially settable in the New call that creates the tokenizer instance.

Examples

In the following request fragment, the first PeekToken call returns quotes example, removing the double quotation marks from the tokenizer string because that is the default behavior. Then, after RemoveQuotes is reset to False, the next peekToken call displays the returned token value with its quotation marks ("quotes example"):

... %tok = new(Quotes='"') %tok:string = '"quotes example"' Print %tok:peekToken %tok:removeQuotes = False Print %tok:peekToken ...

See also