Converts all of alphabetic characters to lower-case.
tolower <strvar> <string>
Converts all of alphabetic characters in <string> to lower-case, and returns it in the string variable <strvar>.
; The string 'abcdefgh' is assigned to the variable "valstr". tolower valstr 'abCDefGH'