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.3 . Guide To CA-Clipper - <b>islower()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 ISLOWER()
 Determine if the leftmost character is a lowercase letter
------------------------------------------------------------------------------
 Syntax

     ISLOWER(<cString>) --> lBoolean

 Arguments

     <cString> is the character string to be examined.

 Returns

     ISLOWER() returns true (.T.) if the first character of the character
     string is a lowercase letter; otherwise, it returns false (.F.).

 Description

     ISLOWER() is a character function that determines whether the first
     character of a character string is lowercase.  It is the inverse of
     ISUPPER() which determines whether a character begins with an uppercase
     character.

     Both ISLOWER() and ISUPPER() relate to the LOWER() and UPPER() functions
     which actually convert lowercase characters to uppercase, and vice
     versa.

 Examples

     .  These examples demonstrate various results of ISLOWER():

        ? ISLOWER("aBcDe")         // Result: .T.
        ? ISLOWER("AbcDe")         // Result: .F.
        ? ISLOWER("1abcd")         // Result: .F.
        ? ISLOWER("abcd")            // Result: .T.

 Files   Library is CLIPPER.LIB.


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

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