Files
opentf/website/docs/language/functions/upper.html.md
Dylan Staley 0e48f58688 Revert "migrate docs to mdx"
This reverts commit 3cb12b5a52.
2021-11-22 15:57:25 -08:00

657 B

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
language upper - Functions - Configuration Language docs-funcs-string-upper 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

> upper("hello")
HELLO
> upper("алло!")
АЛЛО!

This function uses Unicode's definition of letters and of upper- and lowercase.

  • lower converts letters in a string to lowercase.
  • title converts the first letter of each word in a string to uppercase.