Skip to main content
Version: v0.19.0-alpha 🚧

StringAppend

Alias:StringAppend, AppendString

Output:Unit

Appends a string to an existing string variable.

ParameterTypeRequiredPositionSummary
VariableVariableName✔1The variable to append to.
Stringstring✔2The string to append.

Examples​

SCL​

- <var> = 'hello'
- StringAppend <var> ' world'
- Log <var>

Expected Logs​

hello world