--- title: RegExp.prototype.toSource() slug: Web/JavaScript/Reference/Global_Objects/RegExp/toSource tags: - JavaScript - Method - Non-standard - Obsolete - Prototype - Reference - RegExp - Regular Expressions translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/toSource ---
toSource()
メソッドは、オブジェクトのソースコードを表す文字列を返します。
regexObj.toSource()
A string representing the source code of the given {{jsxref("RegExp")}} object.
組み込み {{jsxref("RegExp")}} オブジェクトでは、 toSource()
はソースコードが存在しないことを示す以下の文字列を返します。
function RegExp() { [native code] }
{{jsxref("RegExp")}} のインスタンスでは、 toSource()
はソースコードを表す文字列を返します。
このメソッドは、通常 JavaScript によって内部的に呼び出されるものであり、コード中で明示的に呼び出されることはありません。
何らかの仕様の一部ではありません。
{{Compat("javascript.builtins.RegExp.toSource")}}