String Builder
StringBuilder
Section titled “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
Section titled “Properties ”Value
Section titled “Value ”The initial value of the string to build.
Definition
Section titled “Definition ”Value
Section titled “Value ”The string built up so far.
Append
Section titled “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
Section titled “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.