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
| Field | Type | Required | Description |
|---|---|---|---|
components | StatFormulaComponent | ✓ | The formula for the string that should be split. |
separator | String | ✓ | The formula for the separator the string should be split on. |