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.compile()

この記事は編集レビューを必要としています。ぜひご協力ください

この翻訳は不完全です。英語から この記事を翻訳 してください。

非推奨
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.

概要

非推奨の compile() メソッドはスクリプトの実行中に正規表現を(再)コンパイルするために使われます。RegExpコンストラクタと基本的に同じです。

構文

regexObj.compile(pattern, flags)

引数

pattern
正規表現のテキスト
flags

指定されたら、フラグは次の値の任意の組み合わせを持つことができます。:

g
グローバルマッチ
i
無視するケース
m
マルチ。複数行にわたって動作するものとして始まりと終わりの文字(^ と $)を扱います。(すなわち、 それぞれの行の始まりと終わりにマッチします。(\n または \rによって区切られます)、入力文字列全体の始まりと終わりだけではありません。)
y
難しい。ターゲット文字列においてこの正規表現のlastIndexプロパティによって示されるインデックスからのみマッチします(それ以降のインデックスからマッチしようとしません)。

説明

 compile メソッドは非推奨です。同じ効果を得るRegExpコンストラクタを使用してください。

例: compile()を使う

次の例では、新しいパターンとフラグで正規表現を再コンパイルする方法を示します。

var regexObj = new RegExp("foo", "gi"); 
regexObj.compile("new foo", "g");

仕様

仕様 状況 コメント
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'RegExp.prototype.compile' in that specification.
Standard Initial definition. Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers.

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート (有) (有) (有) (有) (有)
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート (有) (有) (有) (有) (有) (有)

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: shide55
 最終更新者: shide55,