I am a consultant currently working on a project auditing and optimizing an organization's Google Analytics setup. They have several views in place aiming to filter specific areas of their site based on Request URI and are using regular expressions to do. In the regex, the setup is the following, for exclusion filters.
\Q/homepage_\E|\Q/audience_area_2/\E|\Q/audience_area_3/\E
The Question
Does Google Analytics support the \Q ... \E setup in regex? It appears it does not as traffic from areas they're aiming to exclude is very much being reported, but perhaps I'm missing something.
Thanks in advance!
According to RE2 syntax documentation,
\Q
and\E
operators are supported: