JoinToString
This formula allows you to join a list of strings or numbers by a separator. For example, if the list [1, 2, "hello", 3] is provided with a " + " separator, the result of this formula will be the string "1 + 2 + hello + 3".
JSON Format
{
"type": "joinToString",
"components": ...,
"separator": ...
}
Fields
| Field | Type | Required | Description |
|---|---|---|---|
components | StatFormulaComponent | ✓ | The formula for the list of strings or numbers that should be joined by the separator. |
separator | String | ✓ | The separator that should be used when joining the strings. |