I have the pages that I want to set as a goal in Google Analytics but there is a part of the URL that is dynamic number (3 integers). How do I specify such a URL with regex?
URLs are:
/info.php?id=XXX&sent=ok
I am using this regular expression
/info.php?id=^[0-9]{3}$&sent=ok
But it is not working.
What is wrong?