Convert Text to Titlecase
Convert a given text to title case.
Overview
This operation converts a given string to title case, meaning that the first letter of each word in the string is capitalized, while other words remain lowercase.
"hello world" → Hello World
"this is a sample text" → This Is A Sample Text
Syntax
This operation supports two alternative formats.
Option 1
This syntax uses an explicit get.
Option 2
Data
The table below lists the names of the data elements in this operation and indicates which can be renamed in the syntax.
Data Name
Can Be Renamed
the text
Yes
Parameters
Parameter
Description
Examples
Required
input
The input text to be converted to title case.
hello world
this is a sample text
Yes
Examples
1. Get Article Name in Title Case
2. Get Airline in Title Case
Last updated
Was this helpful?