Comparer.Equals
Returns a logical value based on the equality check over the two given values.
function (comparer
as function, optionalx
as nullable any, optionaly
as nullable any) as logical
Returns a
logical
value based on the equality check over the two given values, x
and y
, using the provided comparer
. comparer
is a Comparer
which is used to control the comparison. Comparers can be used to provide case insensitive or culture and locale aware comparisons. The following built in comparers are available in the formula language: Comparer
Compare "1" and "A" using "en-US" locale to determine if the values are equal.
Comparer.Equals(Comparer.FromCulture("en-us"), "1", "A")
false
Last modified 4yr ago