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 true
EXACT("String 1", "Another String")
// returns false
EXACT(4,4)
// returns true
Updated about 1 year ago