LOWER Convert string to lower case
| << Click to Display Table of Contents >> Navigation: Robo-FTP User's Guide > Script Programming > Script Commands > All Script Commands > LOWER Convert string to lower case | 
| Syntax: | LOWER | [ variable ] | 
| Arguments: | [ variable ] | A variable containing letter to convert to lower case | 
| Options: | none | 
 | 
This script command is used to convert letters to lower case.
This example shows two string conversions, first to lower case and then to upper case:
SET word = "Hello"
;; word is now "Hello"
LOWER word
;; word is now "hello"
UPPER word
;; word is now "HELLO"