strings.trimRight() function

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

*Output data type: String*

  1. import "strings"
  2. strings.trimRight(v: ".abc.", cutset: ".")
  3. // returns ".abc"

Parameters

v

String to remove characters from.

*Data type: String*

cutset

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

*Data type: String*

Examples

Trim trailing periods from all values in a column
  1. import "strings"
  2. data
  3. |> map(fn: (r) => ({
  4. r with
  5. variables: strings.trimRight(v: r.variables, cutset: ".")
  6. })
  7. )

Related articles