See the supported connectors for Application Integration.

EQUALS_IGNORE_CASE function

EQUALS_IGNORE_CASE function

Function NameDescriptionUsageInput parameterReturn value
EQUALS_IGNORE_CASECompares the specified value with the existing value.EQUALS_IGNORE_CASE(value)Value to compare.A boolean. Returns TRUE if the specified value matches the existing value (ignoring case) and FALSE otherwise.

Supported data type

The EQUALS_IGNORE_CASE function supports the following data type:

  • String

Example: Compare two strings

Sample data: $var1$ = "Apigee Integrations"

Usage: $var1$.EQUALS_IGNORE_CASE("apigee integrations")

Check if var1 equals apigee integrations.

Output: TRUE

Recommendation