Exact function
Syntax
Exact(string1, string2)
Description
Use the Exact function to compare two text strings and returns True if they are the same, False otherwise. Exact is case-sensitive because it uses the internal character codes.
Returns
Returns a Boolean value: True if the two strings match in a case-sensitive comparison.
Example
The examples set &MATCH to True, then False:
&MATCH = Exact("PeopleSoft", "PeopleSoft");
&MATCH = Exact("PeopleSoft", "Peoplesoft");
Related Topics