Skip to main content

Split

This formula allows you to split a string into several components based on a separator. e.g: If components returns "1, 2, 3, 4", you could use the ", " separator to get the array ["1", "2", "3", "4"] as a result from this formula.

JSON Format

{
"type": "split",
"components": ...,
"separator": ...
}

Fields

FieldTypeRequiredDescription
componentsStatFormulaComponentThe formula for the string that should be split.
separatorStringThe formula for the separator the string should be split on.