Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide To Clipper - <b>islower()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
ISLOWER()


Syntax:     ISLOWER(<expC>)

Purpose:    To determine if the leftmost character in the specified
            character string is lower case.

Argument:   <expC> is the character string to examine.

Returns:    A logical value.

            ISLOWER() returns true (.T.) if the first character of the
            character string is lower case.  Any other character returns
            false (.F.).

Library:    EXTEND.LIB


----------------------------------- Examples -------------------------------

   ? ISLOWER("aBcDe")         && Result: .T.
   ? ISLOWER("AbcDe")         && Result: .F.


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

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