Change Text Case
Command description
Converts text to uppercase, lowercase, or title case and saves the result as a new text variable.
Command Input Parameters
| input parameters | Input parameter type | Description |
|---|---|---|
| Text Content | any | Content to convert. Lists are joined with newline characters; other values are converted to strings |
| Convert To | enum | Uppercase, Lowercase, Title Case |
Command Output Parameters
| Output parameters | Output parameter type | Description |
|---|---|---|
| Conversion Result | str | Converted text |
Note
Title Case uses Python's str.title() behavior and is primarily intended for English text.
AI Workflow Generation Notes
- The command returns new text and does not modify the input value.