contents   index   previous   next



Clib.isalpha()

syntax:

Clib.isalpha(chr)

where:

chr - a character, a single character string.

 

return:

boolean - true if chr is in: A-Z or a-z. Else false.

 

description:

Returns true if chr is an alphabetic character in one of the following sets of characters: A-Z or a-z.

 

 


Clib.isascii()