706 B
706 B
title | description | menu | weight | related | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
strings.isLower() function | The strings.isLower() function tests if a single-character string is lowercase. |
|
301 |
|
The strings.isLower()
function tests if a single-character string is lowercase.
Output data type: Boolean
import "strings"
strings.isLower(v: "a")
// returns true
Parameters
v
The single-character string value to test.
Data type: String
Examples
Filter by columns with single-letter lowercase values
import "strings"
data
|> filter(fn: (r) => strings.isLower(v: r.host))