# IsLower

| **Name**    | ***IsLower***                                                                                                                                                                                              |
| ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Syntax      | IsLower (String str)                                                                                                                                                                                       |
| Purpose     | To check whether the specified character within a string, in the specified index position, is lowercase alphabetic.                                                                                        |
| Description | Checks whether specified character is lowercase alphabetic.                                                                                                                                                |
| Return Type | Boolean                                                                                                                                                                                                    |
| Parameters  | <p>str \[System.String] – String containing the character to test</p><p>index \[System.Int32] – Numerical position of the character in the string to test. If not specified, index is presumed to be 0</p> |

![](https://github.com/astera-software/Astera_Data_Stack_v9/blob/main/.gitbook/assets/0%20\(67\).png)

**Example**

In this example, we are passing the required parameters to the function transformation object using a *Variables* object.

Where,

*str* = aAbBcC

*index* = 0

![](https://github.com/astera-software/Astera_Data_Stack_v9/blob/main/.gitbook/assets/1%20\(68\).png)

Right-click on the function transformation object and select *Preview Output.* You can see that Astera Data Stack has returned “True”, as the character in the specified numerical position is a lowercase alphabet.

![](https://github.com/astera-software/Astera_Data_Stack_v9/blob/main/.gitbook/assets/2%20\(68\).png)

Conversely, if we replace the *index* value with “1”, the output value will return the Boolean value, “False”, as shown below:

![](https://github.com/astera-software/Astera_Data_Stack_v9/blob/main/.gitbook/assets/3%20\(23\).png)


---

# 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://documentation.astera.com/astera-data-stack-v7/functions/string/islower.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.
