docs-v2/content/influxdb/cloud/reference/flux/stdlib/strings/replace.md

1.2 KiB

title description aliases menu weight related
strings.replace() function The strings.replace() function replaces the first `i` non-overlapping instances of a substring with a specified replacement.
/influxdb/cloud/reference/flux/functions/strings/replace/
influxdb_cloud_ref
name parent
strings.replace Strings
301
/influxdb/cloud/reference/flux/stdlib/strings/replaceall

The strings.replace() function replaces the first i non-overlapping instances of a substring with a specified replacement.

Output data type: String

import "strings"

strings.replace(v: "oink oink oink", t: "oink", u: "moo", i: 2)

// returns "moo moo oink"

Parameters

v

The string value to search.

Data type: String

t

The substring value to replace.

Data type: String

u

The replacement for i instances of t.

Data type: String

i

The number of non-overlapping t matches to replace.

Data type: Integer

Examples

Replace a specific number of string matches
import "strings"

data
  |> map(fn: (r) => ({
      r with
      content: strings.replace(v: r.content, t: "he", u: "her", i: 3)
    })
  )