Delimiter
Use this method for fields that use a delimiter to separate multiple string values. You can either extract an individual element to use as the output, or convert the string into an object array schema element.
-
Criterion: How you want to treat the delimited list of values.
- From the Left: Start from the beginning of the delimited list and count forward.
- From the Right: Start from the end of the delimited list and count backward.
- Convert to array: Treat this dimension as if it is an object array schema element.
-
Delimiter: The delimiter that the field uses.
-
Index: Only present if the criterion is From the Left/Right. The element number as if it was in an array. For example, if the string input is
"Fox,Turtle,Rabbit,Wolf"
with an index of 3, the output is"Rabbit"
. If the index is higher than the number of delimited elements, No value options apply.
URL parse
For use with fields that contain URLs. Using the example URL https://example.com/store/index.html?cid=campaign#cart
, the following options are available:
- Get protocol: Get the URL’s protocol. For example,
"https://"
. - Get host: Get the URL’s host. For example,
"example.com"
. - Get path: Get the URL’s path. For example,
"store/index.html"
. - Get query string value: Get the value from a single query string. Place the desired query string parameter in the Query key field. If the above URL is used with the
"cid"
query key, the output is"campaign"
. - Get hash value: Get the URL’s hash value. For example,
"cart"
.
If the input is not a valid URL or if the desired URL component is not present, No value options apply.