String Repeat

Repeats the string a given number of times, optionally with a separator between each repetition.

Interface

Inputs

ParameterDetailsPossible Types
String

The string to be repeated.

Primary Input

String
Count

The number of times the string should appear in the output.

Default: 2

u32
Separator

The string placed between each repetition.

Default: \n

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: true

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

String