Consider the following Ruby code:
/(?<!big )dog/.match('I have a big dog.')
Now I turn on the free space mode:
/(?x)(?<!big )dog/.match('I have a big dog.')
Why is this happening, and how can I turn on the free space mode without violating my negative distortions?
source
share