docs-v2/content/flux/v0.x/stdlib/strings/equalfold.md

1.1 KiB

title description aliases menu weight introduced
strings.equalFold() function The strings.equalFold() function reports whether two UTF-8 strings are equal under Unicode case-folding.
/influxdb/v2.0/reference/flux/functions/strings/equalfold/
/influxdb/v2.0/reference/flux/stdlib/strings/equalfold/
/influxdb/cloud/reference/flux/stdlib/strings/equalfold/
flux_0_x_ref
name parent
strings.equalFold strings
301 0.18.0

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)
        })
    )