Name
UpperStr -- convert string to upper case
Synopsis
var$ = UpperStr(string$[, encoding])
Function
Converts all characters in string$ to upper case.

The optional encoding parameter can be used to set the character encoding to use. This defaults to the default string encoding set using SetDefaultEncoding(). See Character encodings for details.

Inputs
string$
string to convert to upper case
encoding
optional: character encoding to use (defaults to default string encoding) (V7.0)
Results
var$
resulting string
Example
Print(UpperStr("Hello World!"))
Prints "HELLO WORLD!" to the screen.

Show TOC