Concatenation functions
Reference documentation for Expressif functions in the text/concatenation scope.
| Name | Overview |
|---|---|
append | Returns the argument value followed by the parameter value. If the argument is null, it returns the text specified as the parameter. |
append-new-line | Returns the argument value followed by a space character. If the argument is null, it returns the text specified as the parameter. |
append-space | Returns the argument value followed by a space character. If the argument is null, it returns the text specified as the parameter. |
prefix | Returns the argument value preceeded by the parameter value. If the argument is null, it returns null. |
prefix-new-line | Returns the argument value preceeded by a space character. If the argument is null, it returns null. |
prefix-space | Returns the argument value preceeded by a space character. If the argument is null, it returns null. |
prepend | Returns the argument value preceeded by the parameter value. If the argument is null, it returns the text specified as the parameter. |
prepend-new-line | Returns the argument value preceeded by a space character. If the argument is null, it returns the text specified as the parameter. |
prepend-space | Returns the argument value preceeded by a space character. If the argument is null, it returns the text specified as the parameter. |
replace-slice | Returns the argument value with a subset of the string substitued by a another string. |
suffix | Returns the argument value followed by the parameter value. If the argument is null, it returns null. |
suffix-new-line | Returns the argument value followed by a space character. If the argument is null, it returns null. |
suffix-space | Returns the argument value followed by a space character. If the argument is null, it returns null. |
text | Constructs text by evaluating zero or more positional expressions from left to right against the same input, converting each result to text, and concatenating the converted values in order. Spread arguments expand array values in place. Returns empty text when no expressions are supplied. |