upper

Table of Contents

Function

upper — convert a string to upper case

Synopsis

upper(s: string) -> string

Description

The upper function converts all lower case Unicode characters in s to upper case and returns the result.

Examples

yield upper(this)
"Super JSON" 
Loading...

Slices can be used to uppercase a subset of a string as well.

func capitalize(str): (
  upper(str[0:1]) + str[1:]
)
yield capitalize(this)
"super JSON" 
Loading...

SuperDB