RegExp.prototype[@@split]() - JavaScript 编辑

[@@split]() 方法切割 String 对象为一个其子字符串的数组 。

语法

regexp[Symbol.split](str[, limit])

参数

str
切割操作的目标字符串
limit

可选。一个为了限制切割数量的特定整数。 [@@split]() 防范仍会切割每个匹配正则模式的匹配项,直到切割数量达到该限制数,除非提前切割完字符串。

返回值

包含其子字符串的Array

描述

如果切割器是一个RegExp对象,这个方法就将在 String.prototype.split() 的内部调用。例如,下面的两个方法返回相同结果。

'a-b-c'.split(/-/);

/-/[Symbol.split]('a-b-c');

这个方法为自定义 RegExp 子类中的匹配行为而存在。

如果str参数不是一个RegExp 对象, String.prototype.split() 就不会调用该方法,也不会创建一个 RegExp 对象。示例

直接调用

这个方法的使用方式和 String.prototype.split() 相同,不同之处是 this 和参数顺序。

var re = /-/g;
var str = '2016-01-02';
var result = re[Symbol.split](str);
console.log(result);  // ["2016", "01", "02"]

在子类中使用 @@split

RegExp 的子类可以覆写 [@@split]()方法来修改默认行为。

class MyRegExp extends RegExp {
  [Symbol.split](str, limit) {
    var result = RegExp.prototype[Symbol.split].call(this, str, limit);
    return result.map(x => "(" + x + ")");
  }
}

var re = new MyRegExp('-');
var str = '2016-01-02';
var result = str.split(re); // String.prototype.split calls re[@@split].
console.log(result); // ["(2016)", "(01)", "(02)"]

规范

SpecificationStatusComment
ECMAScript 2015 (6th Edition, ECMA-262)
RegExp.prototype[@@split]
Standard初始定义
ECMAScript Latest Draft (ECMA-262)
RegExp.prototype[@@split]
Draft 

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support?49 (49)???
FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support??49.0 (49)???

另见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:84 次

字数:7333

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文