Documentation

strings.isDigit() function

strings.isDigit() tests if a single-character string is a digit (0-9).

Function type signature
(v: string) => bool

For more information, see Function type signatures.

Parameters

v

(Required) Single-character string to test.

Examples

Filter by columns with digits as values

import "strings"

data
    |> filter(fn: (r) => strings.isDigit(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