Mwnci islower() Function

Syntax

islower(string)

Description

The islower() function returns true if all the characters are in lower case, otherwise false.

Any other other characters (numbers, symbols and spaces) are not checked, only alphabet characters.

Example

include("string")
println(islower("abc123"))
println(islower("ABC123"))

true
false