LanguageFunctionslowerVersion: v1.16.0On this pagelowerFunction lower — convert a string to lower caseSynopsislower(s: string) -> stringDescriptionThe lower function converts all upper case Unicode characters in s to lower case and returns the result.Examplesecho '"Zed"' | zq -z 'yield lower(this)' -=>"zed"