string.lower

Syntax string.lower (string)

Params string is the string whose characters are to be operated on by the verb.

Action Converts all the characters in string to lower case.

Returns The resulting string.

Examples string.lower ("Ron Darling")

   » ron darling

string.lower ("NeW YoRk mEtS")

   » new york mets

string.lower ("pot roast")

   » pot roast

See Also string.upper

Discuss