Skip to main content
Splits a single piece of text into a list, breaking it apart wherever a chosen separator appears. Use this when a field packs several values into one string, such as red,cotton,summer for tags or a comma-separated list of email addresses, and you want each value as its own item so the rest of your integration can work with them individually.

Fields

Sample data

FieldValue
Delimiter,
Input:
{ "tags": "red,cotton,summer" }
Output:
{ "tags": ["red", "cotton", "summer"] }