LanguageFunctionsupperVersion: v1.13.0On this pageupperFunction upper — convert a string to upper caseSynopsisupper(s: string) -> stringDescriptionThe upper function converts all lower case Unicode characters in s to upper case and returns the result.Examplesecho '"Zed"' | zq -z 'yield upper(this)' -=>"ZED"