C5_ISLOWER

 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()

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.