I need to filter some results from my stats but cannot quite seem to get the regular expression right.
I need to filter out, eg: /dir/a,b or c but not /dir/x
The a/b/c directories have various characters after the initial character.
I tried the following but it did not work.
^/dir/[a.|b.|c.]
Any helps appreciated.
Thank in advance.