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.
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
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
2. Uppercasing a Promo Code
Last updated
Was this helpful?