Documentation

strings.isLower() function

strings.isLower() tests if a single-character string is lowercase.

Function type signature
(v: string) => bool

For more information, see Function type signatures.

Parameters

v

(Required) Single-character string value to test.

Examples

Filter by columns with single-letter lowercase values

import "strings"

data
    |> filter(fn: (r) => strings.isLower(v: r._value))

View example input and output


Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Read more