STR_LC, CONV_LC
Script Functions: Converts all characters of a string to lowercase
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  | 
                
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: