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


---

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