STR_LC, CONV_LC
            Script Functions: Converts all characters of a string to lower case
Syntax
STR_LC (String)
CONV_LC (String)
            
| 
                         Syntax  | 
                    
                         Description/Format  | 
                
|---|---|
| 
                         String  | 
                    
                         Alphanumeric string  | 
                
| 
                         Return code  | 
                
|---|
| 
                         String in which all letters are written in lower case  | 
                
Comments
Both script functions are functionally identical.
Examples
Both examples convert a character set to lower-case letters. In the first example, the string is supplied as a string literal and in the second as a script variable. The supplied results are "abcdefgh 123&%$§" and "ucaagx.htm".
:SET &STRING# = CONV_LC("ABCDEFGH 123&%$§")
:SET &NAME# = "UCAAGX.HTM"
:SET &STRING# = STR_LC(&NAME#)
            
See also:
| Script element | Description | 
|---|---|
| Converts all characters of a string to upper case | 
About Scripts
Script Elements - Alphabetical Listing
Script Elements - Ordered by function