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. Uppercasing a Flight Number
  • 2. Uppercasing a Promo Code

Was this helpful?

Export as PDF
  1. Conversions

Convert Text to Uppercase

Convert a given text to uppercase.

Overview

This operation takes a string as input and returns its uppercase equivalent. It’s useful for standardizing text formats, especially when dealing with case-sensitive data.

  • "hello world" → HELLO WORLD

  • "This is a sample text" → THIS IS A SAMPLE TEXT

Syntax

Option 1

This syntax uses an explicit get.

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

Option 2

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

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

Parameters are placeholders for data. Refer to the table below for details on each parameter in this operation. In the syntax, replace parameters with your own values.

Parameter
Description
Examples
Required

input

The input text to be converted to uppercase.

aa1234

Yes

Examples

1. Uppercasing a Flight Number

the flight number is "aa1234"
the flight number's uppercase
AA1234

2. Uppercasing a Promo Code

the promo code is "save20"
get the promo code's uppercase
SAVE20

Last updated 7 days ago

Was this helpful?