in reply to Re^2: Regex help pls
in thread Regex help pls
The disadvantage of *SKIP is that is isn't "contained". You cannot easily take a pattern with a *SKIP, and interpolate it in a larger pattern (it's like having subroutines that have 'exits' in them - they're lousy for code reuse)./(?<![0-9])PATTERN_TO_MATCH_CONSECUTIVE_DIGITS(?![0-9])/
|
|---|