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_allxalph() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_ALLXALPH()

 DESCRIPTION

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

 SYNTAX

 C_ALLXALPH(string)

 PARAMETERS

 string (C) is the character string to check.

 RETURNS

 C_ALLXALPH() returns true (.T.) if all characters in the string are
 alphabetic and/or numeric, otherwise false (.F.).

 EXAMPLES

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


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

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