I am using this regex .*\?(a\=([0-9]{3,4}))
to match any URLs with the query string ?a={{a random number here}}. It should only match a query string with 3 or 4 digits
E.g.
http://www.test.com/test/test-test-test/?a=12
http://www.test.com/test-test/news/?a=734
http://www.test.com/test/?a=0987
http://www.test.com/test/test-test-test/?a=90235
My regex should match the second and third links as they contain a query string 3 or 4 digits.
I am using this tool http://www.regexpal.com/ and so far, it only highlights the second link.