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

1.2 KiB

title description aliases menu weight related introduced
strings.lastIndexAny() function The `strings.lastIndexAny()` function returns the index of the last instance of any specified characters in a string.
/influxdb/v2.0/reference/flux/functions/strings/lastindexany/
/influxdb/v2.0/reference/flux/stdlib/strings/lastindexany/
/influxdb/cloud/reference/flux/stdlib/strings/lastindexany/
flux_0_x_ref
name parent
strings.lastIndexAny strings
301
/flux/v0.x/stdlib/strings/index/
/flux/v0.x/stdlib/strings/indexany/
/flux/v0.x/stdlib/strings/lastindex/
0.18.0

The strings.lastIndexAny() function returns the index of the last instance of any specified characters in a string. If none of the specified characters are present, the function returns -1.

Output data type: Integer

import "strings"

strings.lastIndexAny(v: "chicken", chars: "aeiouy")

// returns 5

Parameters

v

The string value to search.

chars

Characters to search for.

Examples

Find the last occurrence of characters from a string
import "strings"

data
    |> map(fn: (r) => ({r with charLastIndex: strings.lastIndexAny(v: r._field, chars: "_-")}))