Skip to content
Advertisement

How to match “cc dd” that doesn’t start with “aa”

I want to match cc dd that doesn’t start with aa

JavaScript

Result: Current

JavaScript

Result: I want ..

JavaScript

Advertisement

Answer

With re, it won’t be possible to achieve what you need because you expect multiple occurrences per string that will be replaced later, and you need a variable-width lookbehind pattern support (not available in re).

You need to install the PyPi regex module by launching pip install regex in your terminal/console and then use

JavaScript

See the Python demo.

Here, (?<!^aab.*)b(?P<n2>cc dd)b matches a whole word cc dd capturing it into n2 group that is not immediately preceded with aa whole word at the beginning of the current line (regex.MULTILINE with ^ make this anchor match any line start position and .* makes sure the check is performed even if cc dd is not immediately preceded with aa.

Advertisement