Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

String.prototype.normalize()

This is a new technology, part of the ECMAScript 2015 (ES6) standard.
This technology's specification has been finalized, but check the compatibility table for usage and implementation status in various browsers.

El mètode normalize() retorna la Forma Normalitzada en Unicode d'un string donat (si el valor passat no és un string, es convertirà a string primer).

Sintaxi

str.normalize([forma])

Paràmetres

forma
Una de les opcions "NFC", "NFD", "NFKC", o "NFKD", que determina quina Forma de Normalització Unicode es farà anar. Si s'omet o es passa undefined com a paràmetre, s'utilitzarà "NFC" per defecte.
  • NFC — Normalization Form Canonical Composition.
  • NFD — Normalization Form Canonical Decomposition.
  • NFKC — Normalization Form Compatibility Composition.
  • NFKD — Normalization Form Compatibility Decomposition.

Errors llençats

RangeError
Es llença un RangeError si forma no és un dels valors especificats adalt.

Descripció

El mètode normalize() retorna la Forma Normalitzada Unicode d'un string. No afecta el propi valor del string passat sino que en retorna un de nou.

Exemples

Utilitzar normalize()

// String inicial

// U+1E9B: LLETRA S PETITA DEL LLATÍ AMB UN PUNT A SOBRE
// U+0323: COMBINACIÓ AMB EL PUNT A SOTA
var str = '\u1E9B\u0323';


// Canonically-composed form (NFC)

// U+1E9B: LLETRA S PETITA DEL LLATÍ AMB UN PUNT A SOBRE
// U+0323: COMBINACIÓ AMB EL PUNT A SOTA
str.normalize('NFC'); // '\u1E9B\u0323'
str.normalize();      // el mateix que a sobre


// Canonically-decomposed form (NFD)

// U+017F: LLETRA S PETITA DEL LLATÍ AMB UN PUNT A SOBRE
// U+0323: COMBINACIÓ AMB EL PUNT A SOTA
// U+0307: COMBINACIÓ AMB EL PUNT A SOBRE
str.normalize('NFD'); // '\u017F\u0323\u0307'


// Compatibly-composed (NFKC)

// U+1E69: LLETRA S PETITA DEL LLATÍ AMB UN PUNT A SOBRE
str.normalize('NFKC'); // '\u1E69'


// Compatibly-decomposed (NFKD)

// U+0073: LLETRA S PETITA DEL LLATÍ
// U+0323: COMBINACIÓ AMB EL PUNT A SOTA
// U+0307: COMBINACIÓ AMB EL PUNT A SOBRE
str.normalize('NFKD'); // '\u0073\u0323\u0307'

Especificacions

Especificació Estat Comentaris
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'String.prototype.normalize' in that specification.
Standard Definició inicial.

Compatibilitat amb navegadors

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari
Suport bàsic 34 31 (31) 11 (Yes) Not supported
Característica Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Suport bàsic Not supported 34 Not supported Not supported Not supported Not supported

Vegeu també

Document Tags and Contributors

 Contributors to this page: enTropy
 Last updated by: enTropy,