| Convert a string to all lower case. |
| string$ = any valid string variable |
Command Description:
| This will take a string and convert it all to lower case letters. Pretty straight forward. |
Example:
| name$="ShAnE MoNrOe" Print "The original name is: " + name$ Print "In lower case it is: " + Lower$(name$) |