Suche…


Syntax

  • new Intl.NumberFormat ()
  • new Intl.NumberFormat ('en-US')
  • new Intl.NumberFormat ('en-GB', {timeZone: 'UTC'})

Parameter

Paramater Einzelheiten
Wochentag "schmal", "kurz", "lang"
Epoche "schmal", "kurz", "lang"
Jahr "numerisch", "2-stellig"
Monat "numerisch", "2-stellig", "schmal", "kurz", "lang"
Tag "numerisch", "2-stellig"
Stunde "numerisch", "2-stellig"
Minute "numerisch", "2-stellig"
zweite "numerisch", "2-stellig"
timeZoneName "kurz lang"

Zahlenformatierung

Zahlenformatierung, Gruppierung der Ziffern nach der Lokalisierung.

const usNumberFormat = new Intl.NumberFormat('en-US');
const esNumberFormat = new Intl.NumberFormat('es-ES');

const usNumber = usNumberFormat.format(99999999.99); // "99,999,999.99"
const esNumber = esNumberFormat.format(99999999.99); // "99.999.999,99"

Währungsformatierung

Währungsformatierung, Gruppieren von Ziffern und Platzieren des Währungssymbols entsprechend der Lokalisierung.

const usCurrencyFormat = new Intl.NumberFormat('en-US', {style: 'currency', currency: 'USD'})
const esCurrencyFormat = new Intl.NumberFormat('es-ES', {style: 'currency', currency: 'EUR'})

const usCurrency = usCurrencyFormat.format(100.10); // "$100.10"
const esCurrency = esCurrencyFormat.format(100.10); // "100.10 €"

Datums- und Uhrzeitformatierung

Formatierung des Datums und der Uhrzeit entsprechend der Lokalisierung.

const usDateTimeFormatting = new Intl.DateTimeFormat('en-US');
const esDateTimeFormatting = new Intl.DateTimeFormat('es-ES');

const usDate = usDateTimeFormatting.format(new Date('2016-07-21')); // "7/21/2016"
const esDate = esDateTimeFormatting.format(new Date('2016-07-21')); // "21/7/2016"


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow