Concat
This formula allows you to concatenate strings and numbers.
JSON Format
{
"type": "concat",
"components": ...
}
Fields
| Field | Type | Required | Description |
|---|---|---|---|
components | StatFormulaComponent | ✓ | The components to concatenate. Must compute to an array (list) of strings and/or numbers. If numbers are in the array they will automatically be converted to strings to concatenate. e.g: If components computes to ["STR: ", 18, " (+", 4, ")"], the result will be "STR: 18 (+4)". |