Tests two text strings for equality.
Syntax:
EXACT( a:Text, b:Text )
Returns the Boolean 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 Boolean value FALSE
.