RemoveQuotes (StringTokenizer property): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (1 revision) |
||
Line 8: | Line 8: | ||
{{Template:StringTokenizer:RemoveQuotes syntax}} | {{Template:StringTokenizer:RemoveQuotes syntax}} | ||
===Syntax terms=== | ===Syntax terms=== | ||
< | <table class="syntaxTable"> | ||
< | <tr><th><i>%bool</i></th> | ||
< | <td>An enumeration object of type Boolean to contain the returned value of RemoveQuotes. For more information about Boolean enumerations, see [[Using Boolean enumerations]]. </td></tr> | ||
RemoveQuotes. | <tr><th><i>%tok</i></th> | ||
For more information about Boolean enumerations, see [[Using Boolean enumerations]]. | <td>A StringTokenizer object variable.</td></tr> | ||
< | </table> | ||
< | |||
</ | |||
==Usage notes== | ==Usage notes== | ||
<ul> | <ul> |
Revision as of 19:55, 6 February 2011
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
%bool | An enumeration object of type Boolean to contain the returned value of RemoveQuotes. For more information about Boolean enumerations, see Using Boolean enumerations. |
---|---|
%tok | A StringTokenizer object variable. |
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 ...