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.
Example:
EXACT("Word", "word")
will return the Boolean value FALSE
.
Note that EXACT
is case-sensitive.