RegExp.prototype[@@matchAll]() - JavaScript 编辑
[@@matchAll]
方法返回对字符串使用正则表达式的所有匹配项。
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
语法
regexp[Symbol.matchAll](str)
参数
str
- 一个
String
的匹配对象。
返回值
一个迭代器。
描述
本方法在String.prototype.matchAll()
中被内部调用。例如,以下两个示例返回相同的结果。
'abc'.matchAll(/a/);
/a/[Symbol.matchAll]('abc');
本方法用于自定义RegExp
子类中的匹配行为。
示例
直接调用
本方法的使用方法几乎与String.prototype.matchAll()
相同,除了this
的不同以及参数顺序的的差异。
var re = /[0-9]+/g;
var str = '2016-01-02';
var result = re[Symbol.matchAll](str);
console.log(Array.from(result, x => x[0]));
// ["2016", "01", "02"]
在子类中使用@@matchAll
RegExp
的子类可以重写[@@matchAll]()
方法来修改默认行为。例如,返回一个Array
而不是iterator:
class MyRegExp extends RegExp {
[Symbol.matchAll](str) {
var result = RegExp.prototype[Symbol.matchAll].call(this, str);
if (!result) {
return null;
} else {
return Array.from(result);
}
}
}
var re = new MyRegExp('([0-9]+)-([0-9]+)-([0-9]+)', 'g');
var str = '2016-01-02|2019-03-07';
var result = str.matchAll(re);
console.log(result[0]); // [ "2016-01-02", "2016", "01", "02" ]
console.log(result[1]); // [ "2019-03-07", "2019", "03", "07" ]
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论