Data Converter
Convert between various data formats - Base64, Binary, JSON, XML, YAML, CSV, HTML, and more
Actions49
- Base64 Actions
- Binary Actions
- Encoding Actions
- Format Actions
- HTML Actions
- String Actions
Overview
The node performs various string transformations and data conversions related to text processing. Specifically, for the String resource with the Title Case operation, it converts input text into Title Case format, capitalizing major words appropriately. This is useful in scenarios where consistent formatting of titles, headings, or names is required.
Practical examples include:
- Formatting article titles or headlines.
- Standardizing user input such as names or product titles.
- Preparing strings for display in UI elements where title case is preferred.
Properties
| Name | Meaning |
|---|---|
| Input Data | The text string to convert to Title Case. |
| Binary Property Name | (Optional) Name for the output binary property if binary output is enabled (not typical for this operation). |
Output
The node outputs a JSON object with a result field containing the transformed string in Title Case. For example:
{
"result": "This Is A Title Case String"
}
No binary data output is expected for this operation.
Dependencies
- No external services or API keys are required.
- The node relies on internal utility functions for string manipulation.
- No special environment variables or n8n configurations are necessary.
Troubleshooting
- Empty Input: If the input string is empty, the output will also be an empty string.
- Invalid Input Type: The node expects a string input; providing other types may cause errors.
- Error Handling: If an error occurs during processing, the node will throw an error unless configured to continue on failure, in which case the error message will be included in the output JSON under the
errorkey.