Exact
The Exact function compares two text strings and returns true if they are exactly equal.
Exact is case-sensitive.
Usage:
= Exact(<text1>, <text2>);
Examples:
/* returns TRUE */
= Exact("hello", "hello");
/* returns FALSE */
= Exact("hello", "Hello");