docs-v2/content/flux/v0.x/stdlib/strings/split.md

1.5 KiB

title description menu weight
strings.split() function `strings.split()` splits a string on a specified separator and returns an array of substrings.
flux_0_x_ref
name parent identifier
strings.split strings strings/split
101

strings.split() splits a string on a specified separator and returns an array of substrings.

Function type signature
(t: string, v: string) => [string]

{{% caption %}}For more information, see Function type signatures.{{% /caption %}}

Parameters

v

({{< req >}}) String value to split.

t

({{< req >}}) String value that acts as the separator.

Examples

Split a string into an array of substrings

import "strings"

strings.split(v: "foo, bar, baz, quz", t: ", ")// Returns ["foo", "bar", "baz", "quz"]