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