Repeats the string a given number of times, optionally with a separator between each repetition.
Interface
Inputs
| Parameter | Details | Possible Types |
|---|---|---|
| String | The string to be repeated. Primary Input | String |
| Count | The number of times the string should appear in the output. Default: | u32 |
| Separator | The string placed between each repetition. 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 |