From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../global_objects/date/tolocalestring/index.html | 180 +++++++++++++++++++++ 1 file changed, 180 insertions(+) create mode 100644 files/ja/web/javascript/reference/global_objects/date/tolocalestring/index.html (limited to 'files/ja/web/javascript/reference/global_objects/date/tolocalestring/index.html') diff --git a/files/ja/web/javascript/reference/global_objects/date/tolocalestring/index.html b/files/ja/web/javascript/reference/global_objects/date/tolocalestring/index.html new file mode 100644 index 0000000000..4de5f6bf2e --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/date/tolocalestring/index.html @@ -0,0 +1,180 @@ +--- +title: Date.prototype.toLocaleString() +slug: Web/JavaScript/Reference/Global_Objects/Date/toLocaleString +tags: + - Date + - Internationalization + - JavaScript + - Method + - Prototype + - Reference +translation_of: Web/JavaScript/Reference/Global_Objects/Date/toLocaleString +--- +
{{JSRef}}
+ +

toLocaleString() メソッドは、言語に合わせた日時の文字列を返します。

+ +

新しい localesoptions の引数により、アプリケーションは使用される書式変換の言語の指定や、関数の振る舞いのカスタマイズをすることができます。

+ +

古い実装のアプリケーションは、 localesoptions の引数を無視します。使用されるロケールや返される文字列の書式は、完全に実装依存です。

+ +
{{EmbedInteractiveExample("pages/js/date-tolocalestring.html")}}
+ + + +

構文

+ +
dateObj.toLocaleString([locales[, options]])
+ +

引数

+ +

どのブラウザーが localesoptions に対応しているのかは、ブラウザーの互換性をご覧ください。 localesoptions を無視する実装では、使用されるロケールや返される文字列の書式は、完全に実装依存です。

+ +

これらの引数の詳細やその使用方法は、 {{jsxref("DateTimeFormat/DateTimeFormat", "Intl.DateTimeFormat()")}} コンストラクターを確認してください。

+ +

日時のそれぞれの部分のプロパティにおける既定値は {{jsxref("undefined")}} です。ただし、 weekday, year, month, day の各プロパティがすべて {{jsxref("undefined")}} のときは、 year, month, day"numeric" とみなされます。

+ +

返値

+ +

与えられた文字列を言語特有の慣習によって表した文字列です。

+ +

性能

+ +

大量の日付を書式化する場合は、 {{jsxref("Global_Objects/DateTimeFormat", "Intl.DateTimeFormat")}} オブジェクトを生成してその {{jsxref("DateTimeFormat.prototype.format", "format")}} プロパティで提供される関数を使用したほうが得策です。

+ +

+ +

toLocaleString() の使用

+ +

ロケールを指定しない基本的な使い方では、既定のロケールと既定のオプションによる書式の文字列が返されます。

+ +
let date = new Date(Date.UTC(2012, 11, 12, 3, 0, 0));
+
+// toLocaleString() メソッドに引数を与えなければ実装に依存し、
+// 既定のロケールとタイムゾーンを返す
+console.log(date.toLocaleString());
+// → "12/11/2012, 7:00:00 PM" : アメリカ/ロサンゼルスのタイムゾーンの en-US ロケールで実行した場合
+
+ +

locales と options に対応しているか確認する

+ +

localesoptions は、まだすべてのブラウザーが対応している訳ではありません。これらが実装されているかどうかは、不適切な言語タグを与えて {{jsxref("RangeError")}} 例外で拒否されるかどうかで確かめられます。

+ +
function toLocaleStringSupportsLocales() {
+  try {
+    new Date().toLocaleString('i');
+  } catch (e) {
+    return e instanceof RangeError;
+  }
+  return false;
+}
+
+ +

locales の使用

+ +

この例では、国ごとに異なる日時の書式を示します。ご使用のアプリケーションのユーザーインターフェイスで使用される言語の書式を得るには、 locales でその言語 (あるいは代替言語) を指定してください。

+ +
let date = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));
+
+// 以下の書式はその地域のタイムゾーンとロケールを想定
+// 米国のアメリカ大陸/ロサンゼルス
+
+// 米国英語は月-日-年の順で AM/PM 表記の 12 時間制
+console.log(date.toLocaleString('en-US'));
+// → "12/19/2012, 7:00:00 PM"
+
+// 英国英語は日-月-年の順で AM/PM 表記なしの 24 時間制
+console.log(date.toLocaleString('en-GB'));
+// → "20/12/2012 03:00:00"
+
+// 韓国は年-月-日の順で AM/PM 表記の 12 時間制
+console.log(date.toLocaleString('ko-KR'));
+// → "2012. 12. 20. 오후 12:00:00"
+
+// 多くのアラビア語圏ではアラビア数字を使用
+console.log(date.toLocaleString('ar-EG'));
+// → "٢٠‏/١٢‏/٢٠١٢ ٥:٠٠:٠٠ ص"
+
+// 日本のアプリケーションでは元号を用いることがある
+// 2012 年は平成 24 年
+console.log(date.toLocaleString('ja-JP-u-ca-japanese'));
+// → "24/12/20 12:00:00"
+
+// 対応していない可能性のある言語を要求した場合、たとえば
+// ここではバリ語とし、代替言語にインドネシア語
+console.log(date.toLocaleString(['ban', 'id']));
+// → "20/12/2012 11.00.00"
+
+ +

options の使用

+ +

toLocaleString() メソッドから得られる結果は、options でカスタマイズできます。

+ +
let date = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));
+
+// 曜日を加えて月とともに長い書式で表す
+let options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
+
+console.log(date.toLocaleString('de-DE', options));
+// → "Donnerstag, 20. Dezember 2012"
+
+// アプリケーションで UTC を用いてそれを示したい場合
+options.timeZone = 'UTC';
+options.timeZoneName = 'short';
+
+console.log(date.toLocaleString('en-US', options));
+// → "Thursday, December 20, 2012, GMT"
+
+// 米国でも 24 時間制を使うことがある
+console.log(date.toLocaleString('en-US', { hour12: false }));
+// → "12/19/2012, 19:00:00"
+
+ +

書式化した日付値を固定値と比較しないでください

+ +

たいていの場合、 toLocaleString() が返す書式は一貫しています。しかし、これは将来的に変更される可能性があり、すべての言語で保証されているわけではありません。

+ +

特に注目すべきは、IE および Edge ブラウザーは日付の周りに書字方向の制御文字を挿入するため、出力テキストが他のテキストと連結されたときに適切に流れるようになっています。

+ +

このことから、 toLocaleString() を固定値と比較できると期待してはいけません。

+ +
"1/1/2019, 01:00:00" === new Date("2019-01-01T01:00:00Z").toLocaleString("en-US");
+// true in Firefox and others
+// false in IE and Edge
+ +
+

: 詳細および例についてはこの StackOverflow のスレッドをご覧ください。

+
+ +

仕様書

+ + + + + + + + + + + + + + + +
仕様書
{{SpecName('ESDraft', '#sec-date.prototype.tolocalestring', 'Date.prototype.toLocaleString')}}
{{SpecName('ES Int Draft', '#sup-date.prototype.tolocalestring', 'Date.prototype.toLocaleString')}}
+ +

ブラウザーの互換性

+ + + +

{{Compat("javascript.builtins.Date.toLocaleString")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf