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