[@@matchAll]
method returns all matches of the regular expression against a string.
regexp[Symbol.matchAll](str)
str
String
that is a target of the match.
An iterator .
This method is called internally in
String.prototype.matchAll()
. For example, the following two examples return same result.
'abc'.matchAll(/a/);
/a/[Symbol.matchAll]('abc');
This method exists for customizing the behavior of
matchAll()
in
RegExp
subclasses.
This method can be used in almost the same way as
String.prototype.matchAll()
, except for the different value of
this
and the different order of arguments.
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"]
Subclasses of
RegExp
can override the
[@@matchAll]()
method to modify the default behavior.
For example, to return an
Array
instead of an
iterator
:
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" ]
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'RegExp.prototype[@@matchAll]' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@matchAll
|
Chrome 73 | Edge 79 | Firefox 67 | IE No | Opera 60 | Safari No | WebView Android 73 | Chrome Android 73 | Firefox Android 67 | Opera Android 52 | Safari iOS No | Samsung Internet Android 5.0 | nodejs 12.0.0 |
完整支持
不支持
RegExp
RegExp.$1-$9
RegExp.input ($_)
RegExp.lastMatch ($&)
RegExp.lastParen ($+)
RegExp.leftContext ($`)
RegExp.prototype.dotAll
RegExp.prototype.flags
RegExp.prototype.global
RegExp.prototype.ignoreCase
RegExp.prototype.multiline
RegExp.prototype.source
RegExp.prototype.sticky
RegExp.prototype.unicode
RegExp.rightContext ($')
RegExpInstance.lastIndex
get RegExp[@@species]
Function
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()