strings.splitAfter() function
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]
Parameters
v
(Required) String value to split.
t
(Required) 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"]
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.