Uppercase

See Also: String Functions, Lowercase

Purpose

To return a string made up of the input string with all the letters capitalized.

Return Type

String

Syntax

(Uppercase( {string-value} ))

What It Does

Uppercase capitalizes all letters in {string-value}, leaving other characters unchanged.

String sLastname

Move "Smith" to sLastname

Move (Uppercase(sLastname))  To sLastname

This example would change the value of the variable sLastname from "Smith" to "SMITH"

Notes