source

プロパティ(R) Property Type (R)
正規表現オブジェクト.source Regular expression object format. Source
Commentary
正規表現オブジェクトで定義されているパターンマッチ文字列を示します。 Indicates a pattern match string that is defined by the regular expression object. 読み出しのみ可能です。 You can only read. 書き込んでも設定されません。 Not set in writing.
サンプルコード Sample code
str = "RegExp Sample Text. String Match Test."; str = "RegExp Sample Text. String Match Test.";
reObj = new RegExp("S+","g"); reObj = new RegExp ( "S +", "g");
outputs[0] = reObj.source; outputs [0] = reObj.source;