This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Set/Get Tokenizer keywords case sensitivity.
Syntax
n = <cTokenizer>.Options.CaseSensitive
<cTokenizer>.Options.CaseSensitive = %TRUE
Returns
Number
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
By default all keywords are treated equal regardless their case.
If needed, CaseSensitivity can be switched to %TRUE. In this way keywords like "MyKey" and "mykey" will be considered different keywords by the tokenizer.
Restrictions
See also
Examples
Uses "Tokenizer"
Uses "Console"
'---Create a new tokenizer object
Dim MyParser As cTokenizer
'---Instantiate new tokenizer
'---A tokenizer object is a mix of keywords, some rules and some methods for parsing/tokenizing a text
MyParser = New cTokenizer()
MyParser.Options.CaseSensitive = %FALSE
PrintL