RegExp.prototype[@@split]() - JavaScript 编辑
The [@@split]()
method splits a String
object into an array of strings by separating the string into substrings.
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.
Syntax
regexp[Symbol.split](str[, limit])
Parameters
str
- The target of the split operation.
limit
OptionalInteger specifying a limit on the number of splits to be found. The
[@@split]()
method still splits on every match ofthis
RegExp pattern (or, in the Syntax above,regexp
), until the number of split items match thelimit
or the string falls short ofthis
pattern.
Return value
An Array
containing substrings as its elements.
Description
This method is called internally in String.prototype.split()
if its separator
argument is an object that has a @@split
method, such as a RegExp
. For example, the following two examples return the same result.
'a-b-c'.split(/-/);
/-/[Symbol.split]('a-b-c');
This method exists for customizing the behavior of split()
in RegExp
subclass.
Examples
Direct call
This method can be used in almost the same way as String.prototype.split()
, except the different this
and the different order of arguments.
let re = /-/g;
let str = '2016-01-02';
let result = re[Symbol.split](str);
console.log(result); // ["2016", "01", "02"]
Using @@split in subclasses
Subclasses of RegExp
can override the [@@split]()
method to modify the default behavior.
class MyRegExp extends RegExp {
[Symbol.split](str, limit) {
let result = RegExp.prototype[Symbol.split].call(this, str, limit);
return result.map(x => "(" + x + ")");
}
}
let re = new MyRegExp('-');
let str = '2016-01-02';
let result = str.split(re); // String.prototype.split calls re[@@split].
console.log(result); // ["(2016)", "(01)", "(02)"]
Specifications
Specification |
---|
ECMAScript (ECMA-262) The definition of 'RegExp.prototype[@@split]' in that specification. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论