Returns whether the specified character is in lowercase.
Syntax
isLowerCase( character )
character.isLowerCase( )
Parameters
character
|
the character to check.
|
Returns
boolean
|
true if it is a lower case letter, [ a .. z ].
false if it is not a lower case letter.
|
Example
if c.isLowerCase( ) then
break
end
|