unicode-string-not-equal string1 string2 &key start1 start2 end1 end2 style => mismatch-index
A string designator
A string designator
Bounding index designators of string1
Bounding index designators of string2
A keyword
The function
unicode-string-not-equal
compares the designated substrings of
string1
and
string2
, ignoring case using Unicode rules specified by
style
. The values of
start1
and
start2
default to 0, while the values of
end1
and
end2
default to
nil
.
The value of
mismatch-index
is the index where the strings mismatch (as an offset from the beginning of
string1
) or
nil
otherwise.
The current implementation only supports one style of comparison:
Compares each character of the string using Unicode's simple case folding rules.