Upper Function

Action

Converts lowercase characters to uppercase.

Syntax

sConverted = Upper(sToConvert)
Variable Description
sConverted The converted string. STRING.
sToConvert The string to convert. STRING.

Notes

Upper converts lowercase and mixed-case strings to uppercase.

Upper is locale sensitive; this means that it works properly when (for example) SetLocale is used.

Upper emulates the application of the C library function _wcsupr to a specified string.

Example

STRING sTitle = "Autumn in December"
Print("Normal case: ", sTitle)
Print("Uppercase: ", Upper(sTitle))
Print("Lowercase: ", Lower(sTitle))