この記事は編集レビューを必要としています。ぜひご協力ください。
この翻訳は不完全です。英語から この記事を翻訳 してください。
非標準
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
概要
非標準の input
プロパティは正規表現の一致している文字列を含む静的プロパティです。RegExp.$_
はこのプロパティのエイリアスです。
構文
RegExp.input
RegExp.$_
説明
input
プロパティは静的プロパティです。個々の正規表現オブジェクトのプロパティではありません。その代わりに、常に、RegExp.input
またはRegExp.$_.
として使用してください。
input
プロパティの値は、正規表現の検索文字列が変更され文字列が一致しているときはいつでも変更されます。
例
例: input
と $_
を使う
var re = /hi/g; re.test("hi there!"); RegExp.input; // "hi there!" re.test("foo"); // new test, non-matching RegExp.$_; // "hi there!" re.test("hi world!"); // new test, matching RegExp.$_; // "hi world!"
仕様
非標準。すべての現在の仕様でサポートされておりません。
ブラウザ実装状況
機能 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
基本サポート | (有) | (有) | (有) | (有) | (有) |
機能 | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
基本サポート | (有) | (有) | (有) | (有) | (有) | (有) |