public static void main(String[] args) {
String url = "http://www.ywfuxing.com/index.php?types=login&action=login";
Pattern p = Pattern.compile(
"(?<=http://|\\.)[^.]*?\\.(com|cn|net|org|biz|info|cc|tv)",
Pattern.CASE_INSENSITIVE);
Matcher matcher = p.matcher(url);
matcher.find();
System.out.println(matcher.group());
}
浙公网安备 33010602011771号