Skip to main content

equalsIgnoreCase (Function)

This returns a boolean value by comparing two strings lexicographically without considering the letter case.

Syntax

<BOOL> str:equalsIgnoreCase(<STRING> arg1, <STRING> arg2)

Query Parameters

NameDescriptionDefault ValuePossible Data TypesOptionalDynamic
arg1The first input string argument.STRINGNoYes
arg2The second input string argument. This is compared with the first argument.STRINGNoYes

Example 1

equalsIgnoreCase("gdn", "gdn")

This returns a boolean value as the output. In this scenario, it returns "true".