LanguageFunctionslowerVersion: NextOn 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"' | super -z -c 'yield lower(this)' -=>"zed"