Skip to main content

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 parametersInput parameter typeDescription
Text ContentanyContent to convert. Lists are joined with newline characters; other values are converted to strings
Convert ToenumUppercase, Lowercase, Title Case

Command Output Parameters

Output parametersOutput parameter typeDescription
Conversion ResultstrConverted 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.