toupper

Convert a character to upper case.

Syntax: x = toupper(char)

x

The upper case representation of the charaacter char

char

Required. Source character

Example:

Dim x as uByte
x=toupper("r")   ' x="R"
x=toupper("*")   ' x=*

Also See: