I have a problem with java regex. I have something like
com/products/id/response.html
And I want the id as anything from Aa-Zz 0-9, I have tried:
com/products/A-Za-z0-9]+/response.html
However with no success, but in this case
com/products/A-Za-z0-9]+.html
It works just fine... Any idea where Am I making mistake?