String.toLocaleLowerCase() (Method)

Converts a string to all lower case using a locale sensitive character mapping.

Availability:

ECMAScript edition - 3
JavaScript - 1.5
JScript - 5.5
Internet Explorer - 5.5
Netscape - 6.0
Property/method value type:String primitive
JavaScript syntax:-myString.toLocaleLowerCase()

The result of this method will be a string primitive containing the value of the object with all characters converted to lower case.

The original string is converted from arbitrary case to lower-case on a character by character basis, taking account of the locale when testing characters.

The characters in the output string will be the lower case equivalents of the characters in the input string according to the rules defined by the Unicode 2.0 standard, and the locale specific rules regarding special (accented) characters.

See also:Bit, Character handling, Character-case mapping, String.prototype, String.toLocaleUpperCase(), String.toLowerCase(), String.toUpperCase()

Cross-references:

ECMA 262 edition 3 - section 15.5.4.17