js正则对象RegExp的$1...$9 属性

返回在模式匹配期间找到的,所存储的最近的九个部分。 只读。

RegExp.$n 

参数
RegExp

始终为全局 RegExp 对象。

n

1 至 9 之间的任意整数。

备注

每当产生一个带括号的成功匹配时,$1...$9 属性的值就被修改。可以在一个正则表达式模式中指定任意多个带括号的子匹配,但只能存储最新的九个。

示例

var re = /(\w+)@(\w+)\.(\w+)/g
var src = "Please send mail to [email protected] and [email protected]. Thanks!"

var result = re.exec(src);

while (result != null) {

    console.log("RegExp.lastMatch: " + RegExp.lastMatch);
    console.log("RegExp.$1: " + RegExp.$1);
    console.log("RegExp.$2: " + RegExp.$2);
    console.log("RegExp.$3: " + RegExp.$3);
}

// Output:
//  RegExp.lastMatch: [email protected]
//  RegExp.$1: george
//  RegExp.$2: contoso
//  RegExp.$3: com

//  RegExp.lastMatch: [email protected]
//  RegExp.$1: someone
//  RegExp.$2: example
//  RegExp.$3: com
 
    
 
    

在以下文档模式中受支持:Quirks、Internet Explorer 6 标准模式、Internet Explorer 7 标准模式、Internet Explorer 8 标准模式、Internet Explorer 9 标准模式、Internet Explorer 10 标准模式和 Internet Explorer 11 标准模式。此外,也在应用商店应用(Windows 8 和 Windows Phone 8.1)中受支持。

你可能感兴趣的:(正则,javascript)