I want to match a URL containing both "foo" and "bar" but not "bar=0".
I'm trying to do this in Google Analytics and it doesn't support lookahead expressions.
So I am matching urls containing both "foo" and "bar" with this expression (foo.+bar)
but how do I negate urls with "bar=0"?