There was an error while loading. Please reload this page.
Checks whether haystack contains needle. Comes in two flavors, Contains which takes casing into account, and ContainsIgnoreCase which doesn't.
haystack
needle
Contains
ContainsIgnoreCase
Contains[IgnoreCase](haystack, needle)
Example: ContainsIgnoreCase($companyName, "Ltd.")
ContainsIgnoreCase($companyName, "Ltd.")
By using the following XML code in the configuration file, the Contains operator may be generally made behave as the ContainsIgnoreCase operator:
<OperatorConfigs> <OperatorConfig name="Contains">ignorecase</OperatorConfig> </OperatorConfigs>