# Get Lowercase Text

## Overview

This operation takes input text and converts it to lowercase. It’s useful for standardizing text input and making it consistent for display and comparison purposes.

* "HELLO WORLD" **→ hello world**
* "This is a sample text" **→ this is a sample text**

## Syntax

### 1. Option 1

This syntax uses an explicit **get**.

```
the text is "{input}"
get the text's lowercase
```

### 2. Option 2

```
the text is "{input}"
the text's lowercase
```

## 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 text string that needs to be converted to lowercase. | 123 Main STREET | Yes      |

## Examples

### 1. Lowercasing an Address

This example converts the address "123 Main STREET" to lowercase, resulting in "123 main street".

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

```
the address is "123 Main STREET"
get the address's lowercase
```

{% endtab %}

{% tab title="Results" %}

```
123 main street
```

{% endtab %}
{% endtabs %}

### 2. Lowercasing a Name

This example converts the name "JANE DOE" to lowercase, resulting in "jane doe."

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

```
the name is "JANE DOE"
the name's lowercase
```

{% endtab %}

{% tab title="Results" %}

```
jane doe
```

{% endtab %}
{% endtabs %}
