Documentation

strings.splitAfterN() function

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

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

For more information, see Function type signatures.

Parameters

v

(Required) String value to split.

t

(Required) String value that acts as the separator.

i

(Required) Maximum number of split substrings to return.

-1 returns all matching substrings. The last substring is the unsplit remainder.

Examples

Split a string into an array of substrings

import "strings"

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

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