javascript - 字符串match()位置对正则exec()的影响
ringa_lee
ringa_lee 2017-04-11 12:26:03
0
0
349
        var str = 'abc rbc fbc dbc';
        var reg = /.(bc)/g;
        var match1 = reg.exec(str);
        var match2 = str.match(reg);
        console.log(match1);
        console.log(reg.lastIndex);
        console.log(match1.index)
        match1 = reg.exec(str);
        console.log(match1);
        console.log(reg.lastIndex);
        console.log(match1.index)
        match1 = reg.exec(str);
        console.log(match1);
        console.log(reg.lastIndex);
        console.log(match1.index);
        //var match2 = str.match(reg);
        console.log(match2);

代码所示,我将var match2 = str.match(reg);的位置改变,输出的值是不一样的。

/5分钟之后更新/
哦哦,我傻了,match()相当于又执行了一次exec(),当然会改变lastIndex的值。。。。

ringa_lee
ringa_lee

ringa_lee

모든 응답(0)
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿