[JavaScript] 正規表示式單次匹配與多次匹配

weixin_33976072發表於2016-03-03

1. 單次匹配

var regexp=/\d+([a-z]+)/,
    source='123a45bcd6ef',
    match=regexp.exec(source);
            
alert(match[0]+'-'+match[1]);

結果:

(1)123a-a

2. 多次匹配

var regexp=/\d+([a-z]+)/g,
    source='123a45bcd6ef';
            
while((match=regexp.exec(source))!=null){
    alert(match[0]+'-'+match[1]);
}

結果:

(1)123a-a
(2)45bcd-bcd
(3)6ef-ef

相關文章