Closed dbogatz closed 3 years ago
var re = /<%(.+?)%>/g, html = "<%hund%><%katze%><%maus%>", match; while(match = re.exec(html)) { console.log("index: "+match.index); }
Expected: index: 0 index: 8 index: 17
MuJS: index: 0 index: 0 index: 0
Expected: index: 0 index: 8 index: 17
MuJS: index: 0 index: 0 index: 0