docs-v2/content/flux/v0.x/stdlib/strings/title.md

956 B

title description aliases menu weight related introduced
strings.title() function The strings.title() function converts a string to title case.
/influxdb/v2.0/reference/flux/functions/strings/title/
/influxdb/v2.0/reference/flux/stdlib/strings/title/
/influxdb/cloud/reference/flux/stdlib/strings/title/
flux_0_x_ref
name parent
strings.title strings
301
/flux/v0.x/stdlib/strings/tolower
/flux/v0.x/stdlib/strings/totitle
/flux/v0.x/stdlib/strings/toupper
0.18.0

The strings.title() function converts a string to title case.

Output data type: String

import "strings"

strings.title(v: "a flux of foxes")

// returns "A Flux Of Foxes"

Parameters

v

The string value to convert.

Examples

Convert all values of a column to title case
import "strings"

data
    |> map(fn: (r) => ({ r with pageTitle: strings.title(v: r.pageTitle) }))