Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_allalpha() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_ALLALPHA()

 DESCRIPTION

 C_ALLALPHA() checks a character string to determine if it contains
 only upper or lower case alphabetic characters (A-Z, a-z).  The
 alphabetic characters checked are ASCII 65 through 90 and ASCII 97
 through 122.

 SYNTAX

 C_ALLALPHA(string)

 PARAMETERS

 string (C) is the character string to check.

 RETURNS

 C_ALLALPHA() returns true (.T.) if all characters in the string are
 alphabetic, otherwise false (.F.).

 EXAMPLES

 ? c_allalpha("AbcDef")  --> .T.
 ? c_allalpha("Abcef1")  --> .F.       && Contains number 1
 ? c_allalpha("Abcdef ") --> .F.       && Contains a space
 ? c_allalpha("Abcdef.") --> .F.       && Contains a period


See Also: C_ALLXALPH() C_ALLDIGIT() C_ALLFLOAT() C_NOSPACE()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson