Mwnci tolower() Function

Syntax

tolower(string)

Description

The tolower() returns a string where all characters are lower case.

Symbols and Numbers are ignored.

Example

println(tolower("Hello World"))
println(tolower("HeLlo wOrld"))
println(tolower("!H3LL0 W0RLD!"))


hello world
hello world
!h3ll0 w0rld!