Hi everyone,
I want to write regular expression that allows me to search for things like:
abc (blah blah blah) dre (blah blah blah)
but that it only does it if the line does not contain a % sign
this is what I have so far:
\w+\s+(\w+)
Any help appreciated,
Ted