Documentation

strings.repeat() function

strings.repeat() returns a string consisting of i copies of a specified string.

Function type signature
(i: int, v: string) => string

For more information, see Function type signatures.

Parameters

v

(Required) String value to repeat.

i

(Required) Number of times to repeat v.

Examples

Repeat a string based on existing columns

import "strings"

data
    |> map(fn: (r) => ({r with _value: strings.repeat(v: "ha", i: 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