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/regexp/@@matchall/index.html | 112 +++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 files/ja/web/javascript/reference/global_objects/regexp/@@matchall/index.html (limited to 'files/ja/web/javascript/reference/global_objects/regexp/@@matchall') diff --git a/files/ja/web/javascript/reference/global_objects/regexp/@@matchall/index.html b/files/ja/web/javascript/reference/global_objects/regexp/@@matchall/index.html new file mode 100644 index 0000000000..6c85b1921e --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/regexp/@@matchall/index.html @@ -0,0 +1,112 @@ +--- +title: 'RegExp.prototype[@@matchAll]()' +slug: Web/JavaScript/Reference/Global_Objects/RegExp/@@matchAll +tags: + - JavaScript + - Method + - Prototype + - Reference + - RegExp + - Regular Expressions + - メソッド + - 正規表現 +translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/@@matchAll +--- +
{{JSRef}}
+ +

[@@matchAll] メソッドは、文字列に対する正規表現で一致するすべてのものを返します。

+ +
{{EmbedInteractiveExample("pages/js/regexp-prototype-@@matchall.html", "taller")}}
+ + + +

構文

+ +
regexp[Symbol.matchAll](str)
+ +

引数

+ +
+
str
+
一致の対象となる {{jsxref("String")}} です。
+
+ +

返値

+ +

イテレーターです。

+ +

解説

+ +

このメソッドは内部的に {{jsxref("String.prototype.matchAll()")}} を呼び出します。例えば、以下の2つの例は同じ結果を返します。

+ +
'abc'.matchAll(/a/);
+
+/a/[Symbol.matchAll]('abc');
+ +

このメソッドは matchAll() の動作を {{jsxref('RegExp')}} のサブクラスの中でカスタマイズするために存在します。

+ +

+ +

直接呼び出し

+ +

このメソッドは {{jsxref("String.prototype.matchAll()")}}, とほぼ同様に使用することができますが、 this の値と引数の順序が違う点が異なります。

+ +
let re = /[0-9]+/g;
+let str = '2016-01-02';
+let result = re[Symbol.matchAll](str);
+
+console.log(Array.from(result, x => x[0]));
+// ["2016", "01", "02"]
+
+ +

サブクラスでの @@matchAll の使用

+ +

{{jsxref("RegExp")}} のサブクラスは [@@matchAll]() メソッドを上書きして既定の動作を変更することができます。

+ +

例えば、 {{jsxref("Array")}} をイテレーターの代わりに返すことができます。

+ +
class MyRegExp extends RegExp {
+  [Symbol.matchAll](str) {
+    const result = RegExp.prototype[Symbol.matchAll].call(this, str);
+    if (!result) {
+      return null;
+    } else {
+      return Array.from(result);
+    }
+  }
+}
+
+const re = new MyRegExp('([0-9]+)-([0-9]+)-([0-9]+)', 'g');
+const str = '2016-01-02|2019-03-07';
+const result = str.matchAll(re);
+console.log(result[0]); // [ "2016-01-02", "2016", "01", "02" ]
+console.log(result[1]); // [ "2019-03-07", "2019", "03", "07" ]
+
+ +

仕様書

+ + + + + + + + + + + + +
仕様書
{{SpecName('ESDraft', '#sec-regexp-prototype-matchall', 'RegExp.prototype[@@matchAll]')}}
+ +

ブラウザーの互換性

+ + + +

{{Compat("javascript.builtins.RegExp.@@matchAll")}}

+ +

関連情報

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