Reputation: 2155
I'm trying to set up a goal on Google Analytics and want to match a regular expression against the following url:
/tasks/[random characters of random length]/complete
An example input url would be:
/tasks/12444ab22aaa7/complete
Any ideas?
Upvotes: 0
Views: 314
Reputation: 703
^/tasks/.*/complete$
Validate with a search in the Top Content report before using in a filter.
Upvotes: 2