exact( text1, text2 )
Compares two given text strings in a case-sensitive manner, returning true only if they are exactly the same.
See also: Comparison Operators
Keyword | Type | Description |
---|---|---|
|
Text |
One of two strings that will be compared. |
|
Text |
The other string that will be compared. |
Boolean
When comparing text strings, using this function over the =
operator improves performance. The =
operator, however, is case-insensitive. Only use the exact()
function when case-insensitivity is not a requirement.
1
exact("HELLO", "HELLO")
Returns true
.
1
exact("Hello", "HELLO")
Returns false
.
1
exact("Hello", "World")
Returns false
.
1
exact(123, 123)
Returns true
. Values of other scalar types are compared in the same way as =
.
1
2
3
4
exact(
"Hello",
{ dictionaryKey: "Hello" }.dictionaryKey
)
Returns false
. Cast dictionary values to text before comparing using the exact()
function.
1
2
3
4
exact(
"Hello",
a!map( mapKey: "Hello" ).mapKey
)
Returns true
. Map values do not need to be cast before comparing.
1
exact({ "Hello" }, "Hello")
Returns false
. Lists are not considered equal to scalar values.
Feature | Compatibility | Note |
---|---|---|
Portals | Compatible | |
Offline Mobile | Compatible | |
Sync-Time Custom Record Fields | Compatible | Can be used to create a custom record field that only evaluates at sync time. |
Real-Time Custom Record Fields | Incompatible | Custom record fields that evaluate in real time must be configured using one or more Custom Field functions. |
Process Reports | Compatible | |
Process Events | Compatible |
exact() Function