I need to ignore all between two marks, but what I get is all inside it.
With the regex '.*?' and input asd'asd'asd 'asd'asd I get only the matches 'asd' and 'asd'.
https://regex101.com/r/hHz48H/1
How can I match the opposite of it?
I need to ignore all between two marks, but what I get is all inside it.
With the regex '.*?' and input asd'asd'asd 'asd'asd I get only the matches 'asd' and 'asd'.
https://regex101.com/r/hHz48H/1
How can I match the opposite of it?