Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 357 Bytes

File metadata and controls

24 lines (17 loc) · 357 Bytes

Function

lower — convert a string to lower case

Synopsis

lower(s: string) -> string

Description

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

Examples

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

=>

"zed"