Intl.Collator() constructor - JavaScript 编辑
The Intl.Collator
object is a constructor for collators, objects that enable language sensitive string comparison.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.Syntax
new Intl.Collator([locales[, options]])
Parameters
locales
Optional. A string with a BCP 47 language tag, or an array of such strings. For the general form and interpretation of the
locales
argument, see the Intl page. The following Unicode extension keys are allowed:co
- Variant collations for certain locales. Possible values include: "
big5han
", "dict
", "direct
", "ducet
", "gb2312
", "phonebk
", "phonetic
", "pinyin
", "reformed
", "searchjl
", "stroke
", "trad
", "unihan
". The "standard
" and "search
" values are ignored; they are replaced by theoptions
propertyusage
(see below). kn
- Whether numeric collation should be used, such that "1" < "2" < "10". Possible values are "
true
" and "false
". This option can be set through anoptions
property or through a Unicode extension key; if both are provided, theoptions
property takes precedence. kf
- Whether upper case or lower case should sort first. Possible values are "
upper
", "lower
", or "false
" (use the locale's default). This option can be set through anoptions
property or through a Unicode extension key; if both are provided, theoptions
property takes precedence.
options
Optional. An object with some or all of the following properties:
localeMatcher
- The locale matching algorithm to use. Possible values are "
lookup
" and "best fit
"; the default is "best fit
". For information about this option, see the Intl page. usage
- Whether the comparison is for sorting or for searching for matching strings. Possible values are "
sort
" and "search
"; the default is "sort
". sensitivity
Which differences in the strings should lead to non-zero result values. Possible values are:
- "
base
": Only strings that differ in base letters compare as unequal. Examples:a ≠ b
,a = á
,a = A
. - "
accent
": Only strings that differ in base letters or accents and other diacritic marks compare as unequal. Examples:a ≠ b
,a ≠ á
,a = A
. - "
case
": Only strings that differ in base letters or case compare as unequal. Examples:a ≠ b
,a = á
,a ≠ A
. - "
variant
": Strings that differ in base letters, accents and other diacritic marks, or case compare as unequal. Other differences may also be taken into consideration. Examples:a ≠ b
,a ≠ á
,a ≠ A
.
The default is "
variant
" for usage "sort
"; it's locale dependent for usage "search
".- "
ignorePunctuation
- Whether punctuation should be ignored. Possible values are
true
andfalse
; the default isfalse
. numeric
- Whether numeric collation should be used, such that "1" < "2" < "10". Possible values are
true
andfalse
; the default isfalse
. This option can be set through anoptions
property or through a Unicode extension key; if both are provided, theoptions
property takes precedence. Implementations are not required to support this property. caseFirst
- Whether upper case or lower case should sort first. Possible values are "
upper
", "lower
", or "false
" (use the locale's default); the default is "false
". This option can be set through anoptions
property or through a Unicode extension key; if both are provided, theoptions
property takes precedence. Implementations are not required to support this property.
Examples
Using Collator
The following example demonstrates the different potential results for a string occurring before, after, or at the same level as another:
console.log(new Intl.Collator().compare('a', 'c')); // → a negative value
console.log(new Intl.Collator().compare('c', 'a')); // → a positive value
console.log(new Intl.Collator().compare('a', 'a')); // → 0
Note that the results shown in the code above can vary between browsers and browser versions. This is because the values are implementation-specific. That is, the specification requires only that the before and after values are negative and positive.
Specifications
Specification |
---|
ECMAScript Internationalization API (ECMA-402) The definition of 'Intl.Collator constructor' in that specification. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论