rspec/rules/S6002/description.adoc
2023-08-04 16:12:40 +02:00

9 lines
797 B
Plaintext

Lookahead assertions are a regex feature that makes it possible to look ahead in the input without consuming it. It is often used at the end of regular expressions to make sure that substrings only match when they are followed by a specific pattern.
For example, the following pattern will match an "a" only if it is directly followed by a "b". This does not consume the "b" in the process:
include::{lookahead}[]
However, lookaheads can also be used in the middle (or at the beginning) of a regex. In that case there is the possibility that what comes after the lookahead contradicts the pattern inside the lookahead. Since the lookahead does not consume input, this makes the lookahead impossible to match and is a sign that there's a mistake in the regular expression that should be fixed.