?= is a lookahead assertion. It checks for the match (with any uppercase letter in this case: [A-Z]) but doesn't include it in the match.
?=
[A-Z]
Doesn't seem to have a check for strings with length <= 4.
This comment is hidden because it contains spoiler information about the solution
Loading collection data...
?=
is a lookahead assertion. It checks for the match (with any uppercase letter in this case:[A-Z]
) but doesn't include it in the match.Doesn't seem to have a check for strings with length <= 4.
This comment is hidden because it contains spoiler information about the solution