StringAppend
Alias:StringAppend
, AppendString
Output:Unit
Appends a string to an existing string variable.
Parameter | Type | Required | Position | Summary |
---|---|---|---|---|
Variable | VariableName | ✔ | 1 | The variable to append to. |
String | string | ✔ | 2 | The string to append. |
Examples​
SCL​
- <var> = 'hello'
- StringAppend <var> ' world'
- Log <var>
Expected Logs​
hello world