--- title: strings.split() function description: > `strings.split()` splits a string on a specified separator and returns an array of substrings. menu: flux_v0_ref: name: strings.split parent: strings identifier: strings/split weight: 101 --- `strings.split()` splits a string on a specified separator and returns an array of substrings. ##### Function type signature ```js (t: string, v: string) => [string] ``` {{% caption %}} For more information, see [Function type signatures](/flux/v0/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 ```js import "strings" strings.split(v: "foo, bar, baz, quz", t: ", ")// Returns ["foo", "bar", "baz", "quz"] ```