EXACT function
Text1
The first text string to test.
Text2
The second text string to test.
Returns
Whether the given text strings are identical, taking into account case.
Returns whether the two text strings are identical, in terms of content and in terms of case. EXACT("ab", "AB")EXACT("ab"; "AB") returns FALSE, because the comparison is done in a case-sensitive manner. "ab" = "AB""ab" = "AB", however, returns TRUE, because the = operator is not case-sensitive.
EXACT exists primarily to perform case-sensitive text comparisons. The Calcapp-specific operator == is also case-sensitive, meaning that "ab" == "AB""ab" == "AB" returns FALSE.
Examples
Returns FALSE, because the comparison is done in a case-sensitive manner.
Returns the array { FALSE, TRUE }{ FALSE; TRUE }. The first element is FALSE because "ab" and "AB" are not considered identical by EXACT due to the case-sensitive text comparison. The second element is TRUE, because "test" and "test" are considered identical.