EMA-XPS Online


ALPHA-CHAR-P

ALPHA-CHAR-P
============

Syntax: (alpha-char-p <character>)

This function checks, whether the argument is an
alphabetic character. It returns T, when the test 
was successful, otherwise NIL.

uppercase-character:                   A...Z
lowercase-character:                   a...z
digit-character:                       0...9
alphanumeric-character:                A...Z, a...z
                                       and 0...9

example:       >(alpha-char-p #\5)
               NIL


EMA-XPS Online