string-compare-ignore-case(a, b)


Performs a lexical compare of to strings ignoring the case of the characters and returns if a is 'equal' to b, 'lesser than' or 'greater than'.

Description of Parameters

Parameter

Description

a

Value.

b

Value.

Examples

Parameter a

Parameter b

Result

abc

abc

0

abc

abd

-1

ABC

abc

0

abc

aaa

1