docs-v2/content/v2.0/reference/flux/functions/strings/trim.md

922 B

title description menu weight
strings.trim() function The strings.trim() function removes leading and trailing characters specified in the cutset from a string.
v2_0_ref
name parent
strings.trim Strings
301

The strings.trim() function removes leading and trailing characters specified in the cutset from a string.

Output data type: String

import "strings"

strings.trim(v: ".abc.", cutset: ".")

// returns "abc"

Paramters

v

The string value from which to trim characters.

Data type: String

cutset

The leading and trailing characters to trim from the string value. Only characters that match the cutset string exactly are trimmed.

Data type: String

Examples

Trim leading and trailing periods from all values in a column
import "strings"

data
  |> map(fn:(r) => strings.trim(v: r.variables, cutset: "."))