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>lower()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 LOWER()
 Convert uppercase characters to lowercase
------------------------------------------------------------------------------
 Syntax

     LOWER(<cString>) --> cLowerString

 Arguments

     <cString> is a character string to be converted to lowercase.

 Returns

     LOWER() returns a copy of <cString> with all alphabetic characters
     converted to lowercase.  All other characters remain the same as in the
     original string.

 Description

     LOWER() is a character function that converts uppercase and mixed case
     strings to lowercase.  It is related to UPPER() which converts lowercase
     and mixed case strings to uppercase.  LOWER() is related to the
     ISLOWER() and ISUPPER() functions which determine whether a string
     begins with a lowercase or uppercase letter.

     LOWER() is generally used to format character strings for display
     purposes.  It can, however, be used to normalize strings for case-
     independent comparison or INDEXing purposes.

 Examples

     .  These examples demonstrate various results of LOWER():

        ? LOWER("STRING")               // Result: string
        ? LOWER("1234 CHARS = ")      // Result: 1234 chars =

 Files   Library is CLIPPER.LIB.


See Also: ISLOWER() ISUPPER() UPPER()

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