blob: 2427016506c0598ad9c95a4e49dce9d5f8d0a2ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
---
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>
<p>{{Compat("javascript.builtins.RegExp.toSource")}}</p>
</div>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{jsxref("Object.prototype.toSource()")}}</li>
</ul>
|