strings.equalFold() function
The strings.equalFold()
function reports whether two UTF-8 strings are equal
under Unicode case-folding.
Output data type: Boolean
import "strings"
strings.equalFold(v: "Go", t: "go")
// returns true
Parameters
v
The string value to compare.
t
The string value to compare against.
Examples
Ignore case when testing if two strings are the same
import "strings"
data
|> map(fn: (r) => ({r with
string1: r.string1,
string2: r.string2,
same: strings.equalFold(v: r.string1, t: r.string2)
})
)
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.