Converts the case of every character in the string to lowercase.
Syntax
string string.ToLower()
Returns
A copy of the string with each of its characters converted to lowercase.
Sample
stringSample.rfsvar str = "My hovercraft is full of eels."; ... var f = str.ToLower(); trace str, " is now ", f;
stringSample.rfs
var str = "My hovercraft is full of eels."; ... var f = str.ToLower(); trace str, " is now ", f;
"My hovercraft is full of eels.", " is now ", "my hovercraft is full of eels."
Figure 332. The trace message output of the script above
Related links
Search Highlighter (On/Off)