Skip to main content

String Format

This node is used to construct a new text string from multiple other text strings.

The String Format node needs a format input where the output string and string variables are defined.

Inputs

DataDescription
FormatThis input contains the format string, that is the template that will be used to generated the output. Any part of the template that is encapsulated in bracets will generate an input port. E.g. setting the string format to {Hours} hours ago will create an input port called Hours.
Your {strings}The input ports generated from the Format input.

Outputs

DataDescription
FormattedThe formatted string, e.g. if the string format is {Hours} hours ago and the Hours input is connected to a value of 9 the
formatted string will be 9 hours ago.