mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-26 09:44:01 -04:00
* Adding check-legacy-links-format workflow * Adding test-link-rewrites workflow * Migrating links to new format * Updating docs-content-check-legacy-links-format hash * chore: update source * Update generated partials from Packer plugin SDK * Bump packer-plugin-sdk to get latest packer-sdc * Update website/content/docs/templates/hcl_templates/blocks/build/provisioner.mdx * Update Plugin SDK to fix shell-local regression --------- Co-authored-by: Kendall Strautman <[email protected]> Co-authored-by: Wilken Rivera <[email protected]> Co-authored-by: Kendall Strautman <[email protected]>
27 lines
702 B
Plaintext
27 lines
702 B
Plaintext
---
|
|
page_title: upper - Functions - Configuration Language
|
|
description: >-
|
|
The upper function converts all cased letters in the given string to
|
|
uppercase.
|
|
---
|
|
|
|
# `upper` Function
|
|
|
|
`upper` converts all cased letters in the given string to uppercase.
|
|
|
|
## Examples
|
|
|
|
```shell-session
|
|
> upper("hello")
|
|
HELLO
|
|
> upper("алло!")
|
|
АЛЛО!
|
|
```
|
|
|
|
This function uses Unicode's definition of letters and of upper- and lowercase.
|
|
|
|
## Related Functions
|
|
|
|
- [`lower`](/packer/docs/templates/hcl_templates/functions/string/lower) converts letters in a string to _lowercase_.
|
|
- [`title`](/packer/docs/templates/hcl_templates/functions/string/title) converts the first letter of each word in a string to uppercase.
|