Basics: Data Types: String
Strings are used to represent data as text. For example, the word hamburger
and the phrase I ate 3 hamburgers
are both strings.
Operators
Smart Tag supports the following operators for fields and values that are of String type.
- is equal to
- is not equal to
- starts with
- ends with
- contains
- matches
- does not start with
- does not end with
- does not contain
- does not match
is equal to
Returns true
if field value is equal to the input value.
is not equal to
Evaluates to true
if field value is not equal to to the input value.
starts with
Evaluates to true
if field value starts with to the input value.
ends with
Evaluates to true
if field value ends with to the input value.
contains
Evaluates to true
if field value contains to the input value.
matches
Evaluates to true
if field value matches to the input value.
does not start with
Evaluates to true
if field value does not start with to the input value.
does not end with
Evaluates to true
if field value does not end with to the input value.
does not contain
Evaluates to true
if field value does not contain to the input value.
does not match
Evaluates to true
if field value does not match to the input value.