stringEqualIgnoreCase Function Description

Description

The stringEqualIgnoreCase function compares two string values and returns true if and only if the lower case value of both of its arguments are of equal length and each lower case string is determined to be equal.

stringEqualIgnoreCase belongs to the ALFA function reference's equality predicates category. It maps to the XACML function identifier urn:oasis:names:tc:xacml:3.0:function:string-equal-ignore-case, takes 2 arguments and returns a value of type boolean.

Property Value
Category equality predicates
# Arguments 2
Arguments
  • $arg1: string; $arg2: string
Return Value boolean
Expressed As in-fix
Representation a == ignore case b
Allowed In Target true
ALFA Shorthand N/A
Commutative false

Example

stringEqualIgnoreCase("a", "A"): true

See Also

  • All == functions + string functions