Tests two text strings for equality.
Syntax:
EXACT(a:Text, b:Text)
Returns the Logical value TRUE
if the two text strings are identical, or FALSE
if they are not.
Note that EXACT
is case-sensitive.
Example:
EXACT("Word", "word")
will return the Logical value FALSE
.