Google Analytics Goals not working -


I have set goals in Google Analytic two days ago Hello, I

Set goals in analytic but I can not report any reports on my Google Analytical Admin. Below your settings.

Looks like just below the URL,

  / goto / 2324/323   

and I've set 'regular Expression for this, expression *

/ goto / + [0-9] + / [0-9] + /

I think Is that my goal setup is not working, what did I do wrong here?

Your Regex relies on what you are doing, needing to be modified in many ways

If you are trying to match "/ goto / {one or more digits} / {one or more digits}", then your regex will be:

  \ / Goto \ / [0-9] + \ / [0-9] +   

(Note that the forward slash needs to be removed, and also your appointment "+" Quantifier is not being used properly. "+" Its Meaning that you want to match the last one or more characters.)

If you specify "Replace / 3" (exactly 4 digits) "exactly 3 digits}", then you specify your Regex like this May be:

  \ / goto \ / [0- 9] {4} \ / [0-9] {3}   

hope It helps!

Comments

Popular posts from this blog

ios - Adding an SKSpriteNode to SKScene from a child SKSpriteNode -

Matlab transpose a table vector -

c# - Textbox not clickable but editable -