strings.splitN() function
strings.splitN()
splits a string on a specified separator and returns an array of i
substrings.
Function type signature
(i: int, t: string, v: string) => [string]
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.splitN(v: "foo, bar, baz, quz", t: ", ", i: 3)// Returns ["foo", "bar", "baz, quz"]
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for Flux and this documentation. To find support, use the following resources:
Customers with an annual or support contract can contact InfluxData Support.