docs-v2/content/flux/v0/stdlib/strings/splitafter.md

1.7 KiB

title description menu weight
strings.splitAfter() function `strings.splitAfter()` splits a string after a specified separator and returns an array of substrings. Split substrings include the separator, `t`.
flux_v0_ref
name parent identifier
strings.splitAfter strings strings/splitAfter
101

strings.splitAfter() splits a string after a specified separator and returns an array of substrings. Split substrings include the separator, t.

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.splitAfter(v: "foo, bar, baz, quz", t: ", ")// Returns ["foo, ", "bar, ", "baz, ", "quz"]