我有字符串,想通过正则表达式捕获一个片段:
var regex = new RegExp("(\s?.{0,2}the.{0,2}\s?)", "i");
var str= " the apple the apple the apple the apple the apple the apple the apple"
alert(str.match(regex))
目标是捕获第一个“带有(内)空间的最大 3 个符号”+“the”+“带有(内)空间的最大 3 个符号”
我不明白为什么结果重复 ------> a, a