Javascript [Electronic resources] : The Definitive Guide (4th Edition) نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Javascript [Electronic resources] : The Definitive Guide (4th Edition) - نسخه متنی

David Flanagan

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید

Availability


JavaScript 1.5; JScript 5.5; ECMAScript v3


Synopsis

string.localeCompare(target)

Arguments


target

A string to be compared, in a locale-sensitive
fashion, with string.


Returns


A number that indicates the result of the comparison. If
string is "less than"
target, localeCompare(
) returns a number less than zero. If
string is "greater than"
target, the method returns a number
greater than zero. And if the strings are identical or
indistinguishable according to the locale ordering conventions, the
method returns 0.


Description


When the < and >
operators are applied to strings, they compare those strings using
only the Unicode encodings of those characters and do not consider
the collation order of the current locale. The ordering produced in
this way is not always correct. Consider Spanish, for example, in
which the letters "ch" are traditionally sorted as if
they were a single letter that appeared between the letters
"c" and "d".

localeCompare( ) provides a way to compare strings
that does take the collation order of the default locale into
account. The ECMAScript standard does not specify how the
locale-specific comparison is done; it merely specifies that this
function utilizes the collation order provided by the underlying
operating system.


Example


You can use code like the following to sort an array of strings into
a locale-specific ordering:

var strings;  // The array of strings to sort; initialized elsewhere
strings.sort(function(a,b) { return a.localeCompare(b) });


/ 844