Name
LowerStr -- convert all characters in a string to lower case
Synopsis
var$ = LowerStr(string$[, encoding])
Function
Converts all characters in string$ to lower case and returns the new string.

The optional encoding parameter can be used to set the character encoding to use. This defaults to the default string encoding set using SetDefaultEncoding(). See Character encodings for details.

Inputs
string$
string to convert
encoding
optional: character encoding to use (defaults to default string encoding) (V7.0)
Results
var$
converted string
Example
test$ = LowerStr("Hello World!")
Print(test$)
This will print "hello world!" to the screen.

Show TOC