Free cookie consent management tool by TermsFeed exact() Function
exact() Function

Function

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

Parameters

Keyword Type Description

text1

Text

One of two strings that will be compared.

text2

Text

The other string that will be compared.

Returns

Boolean

Usage considerations

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.

Examples

exact("Copy of the other","Copy of the other") returns true

exact("HELLO","HELLO") returns true

exact("Hello","HELLO") returns false

Feature compatibility

The table below lists this function's compatibility with various features in Appian.
Feature Compatibility Note
Portals Compatible
Offline Mobile Compatible
Custom Record Field Expressions Compatible
Process Reports Compatible
Process Events Compatible
Open in Github Built: Fri, Feb 23, 2024 (09:12:49 PM)

exact() Function

FEEDBACK