containsIgnoreCase()
Table of Contents
Overview
The containsIgnoreCase() function takes string and searchString as arguments. It returns True if the string contains the searchString. Otherwise, it returns False.
Note: This function performs a case-insensitive search.
Return Type
- Boolean
Syntax
<variable> = <string>.containsIgnoreCase( <searchString> );
(OR)
<variable> = containsIgnoreCase(<string>, <searchString>);
Parameter | Description | Data type |
---|---|---|
<variable> | BOOLEAN | |
<string> | The string which may contain the searchString. | TEXT |
<searchString> | The string to be searched for, in the main string. | TEXT |
Examples
Product = "Zoho Creator";
boolVal = Product.containsIgnoreCase("creator"); // returns true
boolVal = Product.containsIgnoreCase("creator"); // returns true