LogoLogo
About
  • Home
  • Guides
  • BDK
  • REST API
  • Release Notes
  • Text
    • Overview
  • Boolean Checks
    • Check Text Contents
    • Check Text End
    • Check Text Start
    • Check Regex Match
  • Conversions
    • Convert Character to Number
    • Convert Number to Character
    • Convert Text Date to ISO Format
    • Convert Text to HTML
    • Convert Text to Number
    • Convert Text to Lowercase
    • Convert Text to Titlecase
    • Convert Text to Uppercase
  • Combine Texts
  • Extract Elements from Text
  • Extract Markdown Headings
  • Get Text Length
  • Removal
    • Remove Text Using Regex
    • Remove Text Using Substrings
  • Replacement
  • Splitting
Powered by GitBook
On this page
  • Overview
  • Syntax
  • Option 1
  • Option 2
  • Data
  • Parameters
  • Examples
  • 1. Get Article Name in Title Case
  • 2. Get Airline in Title Case

Was this helpful?

Export as PDF
  1. Conversions

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.

the text is "{input}"
get the text's titlecase

Option 2

the text is "{input}"
the text's titlecase

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

the article name is "ultimate guide to automation"
get the article name's titlecase
Ultimate Guide To Automation

2. Get Airline in Title Case

the airline is "skyswift airways"
the airline's titlecase
Skyswift Airways

Last updated 7 days ago

Was this helpful?