String str="http://www.jb51.net/article/43949.htm";
String regex=".*taobao.*";
Matcher m=Pattern.compile(regex).matcher(str);
System.out.println(m.matches());
String regex=".*taobao.*";
Matcher m=Pattern.compile(regex).matcher(str);
System.out.println(m.matches());