摘要:
继续上一篇的写,这篇复杂点。分组+范围var reg=/([abcd]bc)/g; var str="abcd bbcd cbcd dbcd"; console.log(str.match(reg)); console.dir(reg.exec(str)); console.dir(reg.exec(str)); console.dir(reg.exec(str)); console.dir(reg.exec(str)); var reg=/([abcd]bc)/; var str="abcd bbcd cbcd dbcd"; console.log(s 阅读全文