HELP STRLOWERCASE                                       Tom Khabaza
                                                        26th June 1985.

The "strlowercase" procedure takes a string and returns a copy in which
all upper case letters have been replaced by their lower case equivalents.
Due to the generality of "mapdata" (which is used by strlowercase - see
help * mapdata ), strlowercase also works on any other data structure
(except for lists).

Example:

    vars s;
    strlowercase('ABCasdf$^%XYZ')=>
    ** abcasdf$^%xyz

See also:
HELP * STRUPPERCASE , HELP * MAPDATA, HELP *UPPERTOLOWER
