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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kognitos.com/legacy/legacy-experience/automation-areas/text/conversions/get-uppercase-text.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
