Skip to content

Formatted String

Leopold A-C edited this page Feb 4, 2021 · 4 revisions

Category: Values

Description

This node can be used to combine values with strings to produce a readable text. It is especially useful for generating messages. Not all of the values have to be used.

Example:
Value A is set to Hello.
Value B is set to World.
The format {}{} would produce the message HelloWorld.
The format {} {} would produce Hello World.
The format {} You would produce Hello You.


Inputs

Format

  • This will be the generated text.
    Each {} fetches one of the following values in the order ABCD.

A

  • This value will be inserted instead of the first {} in the generated text.

B

  • This value will be inserted instead of the second {} in the generated text.

C

  • This value will be inserted instead of the third {} in the generated text.

D

  • This value will be inserted instead of the fourth {} in the generated text.

Outputs

String

  • The formatted text with the values inserted.
Clone this wiki locally