in reply to Re^3: how to find what's not there with a regex?
in thread how to find what's not there with a regex?

Here's an alternative, in case yours doesn't work:
# Read these comments from the bottom up. / ( (?: (?! \s{2} ) # which aren't the start of 2 spaces. . # characters )* # zero or more ) # Capture /sx