遇到一个字符串使用 match 正则比配的问题。`let reg = /(?<={{2}).*?(?=}{2})/g;let res = '{{abc}}'.match(reg);`
chrome 浏览器运行正常,IE 浏览器会报 Unexpected quantifier看网上解释说是最好 避免在字符串方法中使用预匹配正则。
Unexpected quantifier
IE不支持后行断言
2.1m questions
2.1m answers
60 comments
57.0k users