---
title: "isLower"
canonical: "https://support.appfire.com/space/PSCONF/15302965/isLower"
format: markdown
---
> Macro (aura-html)

> Macro (table-plus)
> 
> |  |  |  |  |
> | --- | --- | --- | --- |
> | **Syntax** | isLower(str) | **Package** |  |
> | **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Returns "true" if the provided argument **str**is a string containing only lowercase letters.

Returns "true" if the provided argument **str**is a string containing only lowercase letters.

## Parameters

> Macro (table-plus)
> 
> | Parameter name | Type | Required | Description |
> | --- | --- | --- | --- |
> | str | String | Yes | Specifies a character expression. |

## Return Type

**Boolean (true/false)**

## Examples

### Example 1

```javascript
wret = isLower("foobar");
print(wret);
```

Print **true**

### Example 2

```javascript
wret = isLower("aaa2345f.ff");
print(wret);
```

Print **false**

### Example 3

```javascript
wret = isLower("");
print(wret);
```

Print **false**

  


> ⚠️ isLower returns "false" if the character string **str** contains blanks or special characters or is a null string.

  


## See also

> Macro (contentbylabel)