[@@search]() method executes a search for a match between a this regular expression and a string.

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.search](str)
					

参数

str
String that is a target of the search.

返回值

integer
If successful, [@@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.

范例

Direct call

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 subclasses

Subclass 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
					

规范

规范
ECMAScript (ECMA-262)
The definition of 'RegExp.prototype[@@search]' in that specification.

浏览器兼容性

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. 更新 GitHub 上的兼容性数据
Desktop Mobile Server
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet Node.js
@@search Chrome 50 Edge 13 Firefox 49 IE No Opera 37 Safari 10 WebView Android 50 Chrome Android 50 Firefox Android 49 Opera Android 37 Safari iOS 10 Samsung Internet Android 5.0 nodejs 6.0.0

图例

完整支持

完整支持

不支持

不支持

另请参阅

元数据

  • 最后修改: