Link Search Menu Expand Document

lower

Explanation Converts uppercase letters in strings to lowercase letters
Call format var s = lower( character string )
Return value String with uppercase converted to lowercase
Arguments String string Original character string
Exception None
Example of use
var str = "I have a book. I have a pen.";
var s = lower(str);
print(s, "\n");
Related item upper method