var$ = LowerStr(string$[, encoding])
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.
test$ = LowerStr("Hello World!") Print(test$)This will print "hello world!" to the screen.