The [@@match]()
method retrieves the matches when matching a string against a regular expression.
regexp[Symbol.match](str)
str
String
that is a target of the match.An Array
containing the entire match result and any parentheses-captured matched results, or null
if there were no matches.
This method is called internally in String.prototype.match()
. For example, the following two examples return same result.
'abc'.match(/a/); /a/[Symbol.match]('abc');
This method exists for customizing match behavior within RegExp
subclasses.
This method can be used in almost the same way as String.prototype.match()
, except the different this
and the different arguments order.
var re = /[0-9]+/g; var str = '2016-01-02'; var result = re[Symbol.match](str); console.log(result); // ["2016", "01", "02"]
@@match
in subclassesSubclasses of RegExp
can override the [@@match]()
method to modify the default behavior.
class MyRegExp extends RegExp { [Symbol.match](str) { var result = RegExp.prototype[Symbol.match].call(this, str); if (!result) return null; return { group(n) { return result[n]; } }; } } var re = new MyRegExp('([0-9]+)-([0-9]+)-([0-9]+)'); var str = '2016-01-02'; var result = str.match(re); // String.prototype.match calls re[@@match]. console.log(result.group(1)); // 2016 console.log(result.group(2)); // 01 console.log(result.group(3)); // 02
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'RegExp.prototype[@@match]' in that specification. | Standard | Initial defintion. |
ECMAScript Latest Draft (ECMA-262) The definition of 'RegExp.prototype[@@match]' in that specification. | Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 49 | No | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 49 | Yes | Yes | Yes |
Server | |
---|---|
Node.js | |
Basic support | 6.0.0 |
String.prototype.match()
RegExp.prototype[@@replace]()
RegExp.prototype[@@search]()
RegExp.prototype[@@split]()
RegExp.prototype.exec()
RegExp.prototype.test()
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/@@match