packer-cn/website/pages/docs/from-1.5/functions/string/title.mdx

28 lines
728 B
Plaintext
Raw Normal View History

---
2020-03-18 18:46:47 -04:00
layout: docs
page_title: title - Functions - Configuration Language
2020-03-24 19:48:37 -04:00
sidebar_title: 'title'
2020-03-18 18:46:47 -04:00
sidebar_current: configuration-functions-string-title
description: |-
The title function converts the first letter of each word in a given string
to uppercase.
---
# `title` Function
`title` converts the first letter of each word in the given string to uppercase.
## Examples
2020-03-31 18:47:06 -04:00
```text
> title("hello world")
Hello World
```
This function uses Unicode's definition of letters and of upper- and lowercase.
## Related Functions
2020-04-01 15:15:54 -04:00
- [`upper`](/docs/from-1.5/functions/string/upper) converts _all_ letters in a string to uppercase.
- [`lower`](/docs/from-1.5/functions/string/lower) converts all letters in a string to lowercase.