--- title: strings.toUpper() function description: The strings.toUpper() function converts a string to uppercase. aliases: - /v2.0/reference/flux/functions/strings/toupper/ menu: v2_0_ref: name: strings.toUpper parent: Strings weight: 301 related: - /v2.0/reference/flux/stdlib/strings/totitle - /v2.0/reference/flux/stdlib/strings/tolower - /v2.0/reference/flux/stdlib/strings/title --- The `strings.toUpper()` function converts a string to uppercase. _**Output data type:** String_ ```js import "strings" strings.toUpper(v: "koala") // returns "KOALA" ``` ## Parameters ### v The string value to convert. _**Data type:** String_ ## Examples ###### Convert all values of a column to upper case ```js import "strings" data |> map(fn: (r) => ({ r with envVars: strings.toUpper(v: r.envVars) })) ``` {{% note %}} #### 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: ```js str = "dz" strings.toUpper(v: str) // Returns DZ strings.toTitle(v: str) // Returns Dz ``` {{% /note %}}