diff options
Diffstat (limited to 'files/ja/web/javascript/reference/global_objects/regexp/tosource/index.html')
-rw-r--r-- | files/ja/web/javascript/reference/global_objects/regexp/tosource/index.html | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/regexp/tosource/index.html b/files/ja/web/javascript/reference/global_objects/regexp/tosource/index.html new file mode 100644 index 0000000000..b56c347fda --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/regexp/tosource/index.html @@ -0,0 +1,59 @@ +--- +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 +--- +<div>{{JSRef}} {{obsolete_header}}</div> + +<p><strong><code>toSource()</code></strong> メソッドは、オブジェクトのソースコードを表す文字列を返します。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox notranslate"><var>regexObj</var>.toSource() +</pre> + +<h3 id="Return_value" name="Return_value">返値</h3> + +<p>A string representing the source code of the given {{jsxref("RegExp")}} object.</p> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Native_function" name="Native_function">ネイティブ関数</h3> + +<p>組み込み {{jsxref("RegExp")}} オブジェクトでは、 <code>toSource()</code> はソースコードが存在しないことを示す以下の文字列を返します。</p> + +<pre class="brush: js notranslate">function RegExp() { + [native code] +} +</pre> + +<p>{{jsxref("RegExp")}} のインスタンスでは、 <code>toSource()</code> はソースコードを表す文字列を返します。</p> + +<p>このメソッドは、通常 JavaScript によって内部的に呼び出されるものであり、コード中で明示的に呼び出されることはありません。</p> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<p>何らかの仕様の一部ではありません。</p> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div> +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("javascript.builtins.RegExp.toSource")}}</p> +</div> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{jsxref("Object.prototype.toSource()")}}</li> +</ul> |