NAME
-
ucase$ - convert lower case to upper case
SYNOPSIS
-
v$ =
ucase$(StrExpr)
DESCRIPTION
-
Ucase$ returns a copy of the string StrExpr in which each occurrence
of a lower case character has been replaced with its upper case equivalent.
The opposite conversion is performed by lcase$.
EXAMPLE
-
The program
a$ = "attention k-mart shoppers"
print ucase$(a$)
produces
ATTENTION K-MART SHOPPERS
SEE ALSO
-
lcase$
from
The Basmark QuickBASIC Programmer’s Manual
by
Lawrence Leinweber