标签: regex regex-greedy
以上示例返回"leftmost longest"匹配。同样,此示例返回最右边的匹配:
'looool lool lol loool'.match(/.*(lo+?l)/)[1] // => 'loool'
但我很好奇能够找到最短的“大声笑”的解决方案。