Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

RegExp.prototype.toSource()

非标准
该特性是非标准的,请尽量不要在生产环境中使用它!

概述

返回一个字符串,代表当前对象的源代码

语法

regexObj.toSource()

描述

toSource方法返回值如下:

  • 对于内置的RegExp对象, toSource 如下字符串:
function RegExp() {
    [native code]
}
  • 对于一个RegExp实例, toSource返回代表该正则的字符串.

该方法通常由JavaScript内部隐含调用,而不会明确的出现在用户代码中.

相关链接

Object.prototype.toSource

文档标签和贡献者

 此页面的贡献者: teoli, ziyunfei
 最后编辑者: teoli,