Actions
Bug #20095
closedRegex lookahead behaving strangely in 3.3.0
Bug #20095:
Regex lookahead behaving strangely in 3.3.0
Description
Multiple regex lookaheads seem to behave strangely in 3.3.0:
p "xxx" =~ /(?=.*x)x(?=banana)/ # 2
Clearly, the string xxx
does not contain banana
, so this regex should never match, but it does.
Actions