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