Converts lowercase characters to uppercase.
sConverted = Upper(sToConvert)
Variable | Description |
---|---|
sConverted | The converted string. STRING. |
sToConvert | The string to convert. STRING. |
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.
STRING sTitle = "Autumn in December" Print("Normal case: ", sTitle) Print("Uppercase: ", Upper(sTitle)) Print("Lowercase: ", Lower(sTitle))