Warning! This page documents an earlier version of Flux, which is no longer actively developed. Flux v0.50 is the most recent stable version of Flux.
The strings.split()
function splits a string on a specified separator and returns
an array of substrings.
Output data type: Array of strings
import "strings"
strings.split(v: "a flux of foxes", t: " ")
// returns ["a", "flux", "of", "foxes"]
Parameters
v
The string value to split.
Data type: String
t
The string value that acts as the separator.
Data type: String
Examples
Split a string into an array of substrings
import "strings"
data
|> map (fn:(r) => strings.split(v: r.searchTags, t: ","))