strings.joinStr() function
The strings.joinStr()
function concatenates elements of a string array into
a single string using a specified separator.
Output data type: String
import "strings"
strings.joinStr(arr: ["a", "b", "c"], v: ",")
// returns "a,b,c"
Parameters
arr
The array of strings to concatenate.
v
The separator to use in the concatenated value.
Examples
Join a list of strings into a single string
import "strings"
searchTags = ["tag1", "tag2", "tag3"]
strings.joinStr(arr: searchTags, v: ","))
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, the following resources are available:
InfluxDB Cloud customers can contact InfluxData Support.