Compare two strings lexicographically, ignoring case.
Example:
assert (Strings.compareIgnoreCase ("ABC", "abc") == 0);
| a |
first string. |
| b |
second string. |
|
negative if a < b, 0 if equal, positive if a > b (case-insensitive). |