TOLOWER
Syntax
#include
<STRING.bas>
' source in /Program Files/Coridium/BASIClib
FUNCTION TOLOWER( 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 <STRING.bas>
DIM text(10)
text = "HELLO
WORLD"
PRINT
TOLOWER(text) ' will display hello
world
\
Differences from other BASICs
\
- similar function as Visual BASIC
- no equivalent in PBASIC
See also
\