Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CA-Clipper 5.2 . The Guide To CA-Clippe - <b>isupper()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 ISUPPER()
 Determine if leftmost character in a string is uppercase
------------------------------------------------------------------------------
 Syntax

     ISUPPER(<cString>) --> lBoolean

 Arguments

     <cString> is the character string to examine.

 Returns

     ISUPPER() returns true (.T.) if the first character is an uppercase
     letter; otherwise, it returns false (.F.).

 Description

     ISUPPER() is a character function that determines whether the first
     character of a string is uppercase.  It is the inverse of ISLOWER().
     Both ISUPPER() and ISLOWER() relate to the UPPER() and LOWER() functions
     which actually convert uppercase characters to lowercase, and vice
     versa.

 Examples

     .  These examples illustrate ISUPPER() applied to various values:

        ? ISUPPER("AbCdE")         // Result: .T.
        ? ISUPPER("aBCdE")         // Result: .F.
        ? ISUPPER("$abcd")         // Result: .F.
        ? ISUPPER("8ABCD")         // Result: .F.

 Files:  Library is CLIPPER.LIB.

See Also: ISALPHA() ISDIGIT() ISLOWER() LOWER() UPPER()

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