Append Text
Command description
Appends content to the original text and saves the combined result as a new text variable. The original variable is not modified.
Command Input Parameters
| input parameters | Input parameter type | Description |
|---|---|---|
| Original Text | any | Original content. Lists are joined with newline characters; other values are converted to strings |
| Text to Append | any | Content to append. Lists are joined with newline characters; other values are converted to strings |
Command Output Parameters
| Output parameters | Output parameter type | Description |
|---|---|---|
| New Text | str | Combined text |
Note
Both values are converted to text and concatenated directly. No spaces, line breaks, or other separators are added automatically.
AI Workflow Generation Notes
- Store the output in a new variable or explicitly reuse the original variable name if the original value should be replaced.