Joins a list of strings together with a separator between each pair. This is the inverse of the String Split node.
For example, joining ["a", "b", "c"] with separator ", " produces "a, b, c".
Interface
Inputs
| Parameter | Details | Possible Types |
|---|---|---|
| Strings | The list of strings to join together. Primary Input | Vec<String> |
| Separator | The text placed between each pair of strings. Default: | String |
| Separator Escaping | Whether to convert escape sequences found in the separator into their corresponding characters: "\n" (newline), "\r" (carriage return), "\t" (tab), "\0" (null), and "\" (backslash). Default: | bool |
Outputs
| Product | Details | Possible Types |
|---|---|---|
| Result | The value produced by the node operation. Primary Output | String |