# Get Uppercase Text

## 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

{% tabs %}
{% tab title="Automation" %}

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

{% endtab %}

{% tab title="Results" %}

```
AA1234
```

{% endtab %}
{% endtabs %}

### 2. Uppercasing a Promo Code

{% tabs %}
{% tab title="Automation" %}

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

{% endtab %}

{% tab title="Results" %}

```
SAVE20
```

{% endtab %}
{% endtabs %}
