SYNTAX

<String1>.equalsIgnoreCase(<String2>)

Returns a value of true if <String1> is the same as <String2>, irrespective of case.

USAGE RESTRICTIONS

The Operators row of the table in Summary Table of Vocabulary Usage Restriction applies. No special exceptions.

This sample Rulesheet uses .equalsIgnoreCase to compare the values of string1 and string2, and assign a value to boolean1 based on the results of the comparison.

A sample Ruletest provides the plane type for three sets of string1 and string2. Input and Output panels are shown below. Notice how these results differ from those shown in the equals example.