This is an n8n community node for text case conversion. It allows you to convert text to uppercase or lowercase.
Follow the installation guide in the n8n community nodes documentation.
- Add the "Text Case" node to your workflow
- Select the operation (To Uppercase or To Lowercase)
- Enter the text you want to convert
- The node will output the converted text in the
result
field
- To Uppercase: Converts all characters in the input text to uppercase
- To Lowercase: Converts all characters in the input text to lowercase
Input:
{
"text": "Hello World"
}
Output (To Uppercase):
{
"result": "HELLO WORLD"
}
Output (To Lowercase):
{
"result": "hello world"
}