Skip to main content
Version: v1.3.0

upper

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

echo '"Zed"' | zq -z 'yield upper(this)' -

=>

"ZED"