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