# 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://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/sCINl1saEHMWWkdFB8KB/0.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://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/NnnvSRRlmR4fWoA4VCYY/1.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://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/IxU8AZBn72E8ghDsY72s/2.png)

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

![](https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/EZfTswCFWi3HjM7MRakv/3.png)
