Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想匹配包含“foo”和“bar”但不包含“bar=0”的 URL。
我正在尝试在 Google Analytics 中执行此操作,但它不支持前瞻表达式。
所以我用这个表达式匹配包含“foo”和“bar”的(foo.+bar)url,但是我如何用“bar = 0”否定url?
(foo.+bar)
您可以使用此正则表达式:
\bfoo\b.+\bbar\b(?:$|=[^0]|[^=])
foo.+bar[^\=]
为此,请发布您尝试验证的网址示例