Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在火狐上
"aaa".match(/a?/g)
生产
["a", "a", "a", ""]
只是好奇为什么我们在数组末尾有一个空字符串?
好像RE引擎要检查每个字符,字符串只有3个字符,为什么要产生4个匹配?
空字符串是有效匹配。它以前不匹配的唯一原因?是贪婪。所以匹配"a"是首选,但是当引擎到达字符串的末尾时,它唯一可以匹配的是空字符串。
?
"a"
引擎不计算它必须进行多少次匹配。匹配后,它只是从下一个字符开始计数。在第三个之后a,剩下的是空字符串:
a
>>> "".match(/a?/g) [""]