StringBuilder

StringBuilder is used to concatenate strings when building up a string in a loop.

StringBuilder is used in conjunction with the SetValue function. Drag a SetValue function below the StringBuilder function to assign more strings using the SetValue target property.

Properties

Value

The initial value of the string to build.

Definition

Value

The string built up so far.

Append

A write-only variable that can be used to add a string to the end of the current string.

To use, select 'Append' from the drop-down list of the Target property of the SetValue function, and enter the value that must be appended in the Source property.

AppendLine

A write-only variable that can be used to add a string to the end of the current string, and adds a line-terminator afterwards.

To use, select 'AppendLine' from the drop-down list of the Target property of the SetValue function, and enter the value that must be appended in the Source property.