I have some code:
String url1 = "http://shop.lenovo.com/SEUILibrary/controller/e/web/LenovoPortal/en_US/cart.workflow:ShowCart?shopping-menu-s...";
String url2 = "shop.lenovo.com/(.*)/en_US/cart";
Pattern p = Pattern.compile(url2);
Matcher m = p.matcher(url1);
But m.matches() return for me false. Why?