String Builder
Last updated
Last updated
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.
The initial value of the string to build.
The string built up so far.
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 function, and enter the value that must be appended in the Source property.
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 function, and enter the value that must be appended in the Source property.