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

 DESCRIPTION

 C_NOSPACE() checks a character string to make sure it contains no
 spaces.  The space character checked is ASCII 32.

 SYNTAX

 C_NOSPACE(string)

 PARAMETERS

 string (C) is the character string to check.

 RETURNS

 C_NOSPACE() returns true (.T.) if the string does not contain any
 space character, otherwise false (.F.).

 EXAMPLES

 ? c_nospace("1234.5")  --> .T.
 ? c_nospace("12345a")  --> .T.
 ? c_nospace("123456 ") --> .F.  && Contains a space
 ? c_nospace("123456.") --> .T.
 ? c_nospace("123 45")  --> .F.  && Contains a space


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

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