Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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


# spq
values lower(this)
# input
"SuperDB"
# expected output
"superdb"