EXACT
Tests whether two strings are identical.
Parameters
value String (required) - First string to compare.
value String (required) - Second string to compare.
Returns
Boolean
Examples
EXACT("String 1", "String 1")
// returns trueEXACT("String 1", "Another String")
// returns falseEXACT(4,4)
// returns trueUpdated 9 months ago