Partially Match Condition
Partially match a condition you have defined by appending a caret (^) or dollar sign ($) to the value (e.g. postalCode:^30).
How Does It Work?
Partially matching the condition(s) that you define allows you to take the visibility feature further.
Append Caret (^): Your condition will be matched (return true) if the visitor data property begins with the value you have specified.
Append Dollar Sign ($): Your condition will be matched (return true) if the visitor data property ends with the value you have specified.
How To Implement
The character must be added after the value and only one can be present at a time. If a caret and dollar sign are added, the first one will be treated as part of the value and break your condition. If you are setting multiple conditions, then the semicolon goes after the caret or dollar sign.
Examples
Last updated
Was this helpful?