strings.toUpper() function

The strings.toUpper() function converts a string to uppercase.

*Output data type: String*

  1. import "strings"
  2. strings.toUpper(v: "koala")
  3. // returns "KOALA"

Parameters

v

The string value to convert.

*Data type: String*

Examples

Convert all values of a column to upper case
  1. import "strings"
  2. data
  3. |> map(fn: (r) => ({ r with envVars: strings.toUpper(v: r.envVars) }))

The difference between toTitle and toUpper

The results of toUpper() and toTitle are often the same, however the difference is visible when using special characters:

  1. str = "dz"
  2. strings.toUpper(v: str) // Returns DZ
  3. strings.toTitle(v: str) // Returns Dz

Related articles