Returns whether the specified character is in uppercase.
Syntax
isUpperCase( character )
character.isUpperCase( )
Parameters
character
|
the character to check.
|
Returns
boolean
|
true if it is a uppercase letter, [ A .. Z ].
false if it is not a uppercase letter.
|
Example
if c.isUpperCase( ) then
break
end
|