Basically I am trying to set up goal tracking on one of my accounts. I am having problems setting up my funnel I basically have pages like: /ex/exam/example/123/ Where the '123' part is an id, which is always numerical. I am trying to set-up a regex that will notice know that the page id is different, but they are all the same page. so /ex/exam/example/123/ and /ex/exam/example/124/ are the same page. I tried doing this: /ex/exam/example/.*/ think that is would act as a wildcard for the numbers but it does not seem to work.. Any ideas?
You are using: .* It means 'zero or more characters of any kind' (as in, can include letters too, or even a blank string). What you want in its place is: [0-9]+ This means one or more numbers. Also this is assuming you are using something which knows how to parse RegEx.