The equalsIgnoreCase() function takes two strings as arguments. It compares both the strings, and returns True if both are found to be equal. Otherwise, it returns False.
Note: This function performs a non case-sensitive search.(OR)
| Parameter | Description | Data type |
|---|---|---|
| <variable> | Variable which will contain the boolean value, true or false. | BOOLEAN |
| <string1> | The string to be compared with string2. | TEXT |
| <string2> | The string to be compared with string1. | TEXT |