String.toLowerCase()
Top  Previous  Next


Syntax
myString.toLowerCase()

Arguments
none

Returns
The specified string in all lower-case.

Description
Method: Returns the specified string with all upper-case characters converted into lower-case characters.

Sample
onLoad () {
  str = "Hello World, how are YOU doing?";
  str = str.toLowerCase();
  trace(str);  // returns "hello world, how are you doing?"
}