REGEXP_LIKE Negative Lookahead
Hi Everyone,
I have been researching about how I can do a negative lookahead with REGEXP_LIKE for more than one character/digit.
I would like to make the following work with REGEXP_LIKE. Can you please let me know if there is a way of doing the following with REGEXP_LIKE?
^(?!123([ -]?)45([ -]?)6789)(?!\b(\d)\3+\b)(?!000|666|900|999)[0-9]{3}([ -]?)(?!00)[0-9]{2}\4(?!0000)[0-9]{4}$
regex101: build, test, and debug regex
Thanks,
-Eb