The [@@search]()
method executes a search for a match between a this
regular expression and a string.
regexp[Symbol.search](str)
str
String
that is a target of the search.[@@search]()
returns the index of the first match of the regular expression inside the string. Otherwise, it returns -1.This method is called internally in String.prototype.search()
. For example, the following two examples return the same result.
'abc'.search(/a/); /a/[Symbol.search]('abc');
This method exists for customizing the search behavior in RegExp
subclasses.
This method can be used in almost the same way as String.prototype.search()
, except the different this
and the different arguments order.
var re = /-/g; var str = '2016-01-02'; var result = re[Symbol.search](str); console.log(result); // 4
@@search
in subclassesSubclass of RegExp
can override [@@search]()
method to modify the behavior.
class MyRegExp extends RegExp { constructor(str) { super(str) this.pattern = str; } [Symbol.search](str) { return str.indexOf(this.pattern); } } var re = new MyRegExp('a+b'); var str = 'ab a+b'; var result = str.search(re); // String.prototype.search calls re[@@search]. console.log(result); // 3
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'RegExp.prototype[@@search]' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) The definition of 'RegExp.prototype[@@search]' 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.search()
RegExp.prototype[@@match]()
RegExp.prototype[@@replace]()
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/@@search