blob: 09017079c6b96de458905ace2c7a5f117664e90c (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
---
title: RegExp.prototype.compile()
slug: Web/JavaScript/Reference/Global_Objects/RegExp/compile
tags:
- Deprecated
- JavaScript
- Method
- Prototype
- Reference
- RegExp
- Regular Expressions
translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/compile
---
<div>{{JSRef}} {{deprecated_header}}</div>
<p>非推奨の <strong><code>compile()</code></strong> メソッドは、スクリプトの実行中に正規表現を(再)コンパイルするために使われます。基本的に <code>RegExp</code> コンストラクターと同じです。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><var>regexObj</var>.compile(<var>pattern</var>, <var>flags</var>)</pre>
<h3 id="Parameters" name="Parameters">引数</h3>
<dl>
<dt><code><var>pattern</var></code></dt>
<dd>正規表現のテキスト</dd>
<dt><code><var>flags</var></code></dt>
<dd>
<p>指定された場合、フラグは次の値の任意の組み合わせになります。</p>
<dl>
<dt><code>g</code></dt>
<dd>グローバルマッチ</dd>
<dt><code>i</code></dt>
<dd>大文字小文字の違いを無視</dd>
<dt><code>m</code></dt>
<dd>複数行。始まりと終わりの文字 (^ と $) を複数行にわたって動作するものとして扱います。 (すなわち、 <em>それぞれ</em>の行の始まりと終わりにマッチします。(\n または \r によって区切られます)、入力文字列全体の始まりと終わりだけではありません。)</dd>
<dt><code>y</code></dt>
<dd>先頭固定。対象文字列においてこの正規表現の <code>lastIndex</code> プロパティによって示されるインデックスからのみ検索します (それ以降のインデックスから検索しようとはしません)。</dd>
</dl>
</dd>
</dl>
<h2 id="Description" name="Description">解説</h2>
<p><code>compile</code> メソッドは非推奨です。同じ効果を得るには、 <code>RegExp</code> コンストラクターを使用してください。</p>
<h2 id="Examples" name="Examples">例</h2>
<h3 id="Using_compile" name="Using_compile">compile() の使用</h3>
<p>次の例では、新しいパターンとフラグで正規表現を再コンパイルする方法を示します。</p>
<pre class="brush: js notranslate">var regexObj = new RegExp('foo', 'gi');
regexObj.compile('new foo', 'g');
</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('ESDraft', '#sec-regexp.prototype.compile', 'RegExp.prototype.compile')}}</td>
</tr>
</tbody>
</table>
<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.compile")}}</p>
</div>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{jsxref("RegExp")}}</li>
</ul>
|