toLowerCase
Syntax: toLowerCase(string inputString)
Argument:
- inputString is the string that will be converted to all lowercase format.
Return Type: string
Description: Converts all letters to lowercase in the specified string. If the string parameter contains data that does not have a lowercase equivalent, such as numbers and special characters, those characters are returned unchanged.
Example:
string1 is a string initially "my TERRIBLE Neighbor is 85".
string2 is a string.
string2 = toLowerCase(string1).
The result is that
string2
is "my terrible neighbor is 85".