Ben Downey
Ben Downey

Reputation: 2665

How to Write Regex for Google Analytics Funnel Containing Dynamic URLS

I'm trying to build a funnel for pages with dynamic URLS. My regex-fu is terrible. I'm trying to see how users do on one of our wizards. The URLS I care about all have each project's name in them.

/projects/<PROJECT_NAME>/wizard_steps/1
/projects/<PROJECT_NAME>/wizard_steps/2
/projects/<PROJECT_NAME>/wizard_steps/3

So I think I need to do something like this in order allow for these dynamic URLs.

/projects/?.*$/wizard_steps/1
/projects/?.*$/wizard_steps/2
/projects/?.*$/wizard_steps/3

Does this looks correct? Any guidance would be deeply appreciated.

Upvotes: 0

Views: 692

Answers (1)

Rui Jarimba
Rui Jarimba

Reputation: 17979

Try this regular expression:

/projects/([^/]+)/wizard_steps/.*

Upvotes: 2

Related Questions