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.(OR)
| Parameter | Description | Data type |
|---|---|---|
| <variable> | Variable which will contain the boolean value, true or false. | BOOLEAN |
| <string> | The string which may contain the searchString. | TEXT |
| <searchString> | The string to be searched for, in the main string. | TEXT |