UCASE
Syntax
#include
<VBSTRING.bas>
' source in /Program Files/Coridium/BASIClib
FUNCTION UCASE( string ) as STRING
Description
This
FUNCTION written in BASIC up shifts the letters of
string .String may be a constant or variable string.\
Example
\
#include
<VBSTRING.bas>
DIM text(10)
text = "hello
world"
PRINT
UCASE(text) ' will display HELLO
WORLD
\
Differences from other BASICs
\
- similar function as Visual BASIC
- no equivalent in PBASIC
See also
\