Avisaro Online Documentation - Wiki
Impressum Kontakt Sitemap

UCASE$

Description

UCASE$ generates a new string that is the capitalized counterpart of a source string. All letters are converted to upper case. Digits and other characters are excluded from that conversion.

Example

Prints a completely capitalized "Hello World"

outmode -2
let a$ = ucase$ ("Hello World")
print a$

Remarks

Internally, the C-library function "toupper" is used. See also LCASE$.