793 B
793 B
title | description | menu | weight | related | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
strings.title() function | The strings.title() function converts a string to title case. |
|
301 |
|
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.
Data type: String
Examples
Convert all values of a column to title case
import "strings"
data
|> map(fn: (r) => ({ r with pageTitle: strings.title(v: r.pageTitle) }))