strings.trimLeft() function

The strings.trimLeft() function removes specified leading characters from a string.

*Output data type: String*

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

Parameters

v

String to remove characters from.

*Data type: String*

cutset

The leading characters to remove from the string. Only characters that match the cutset string exactly are removed.

*Data type: String*

Examples

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

Related articles