正则表达式匹配模式与java中的子域

时间:2012-09-12 18:06:11

标签: java regex

我正在尝试匹配子域和域。 我使用了这段代码。

public static void main(String[] args) {
        String s = "http://aaa.example.com";
        Pattern pattern = Pattern.compile("http://([a-z0-9]*.)example.com");
        Matcher matcher = pattern.matcher(s);
        if (matcher.find()) {
            System.out.println("match");
        }

    }

适用于http://aaa.example.comhttp://aaa.example.commm。需要仅匹配example.com的子域 更新: 感谢您的答案,现在我正在面对另一个问题,这个正则表达式不匹配http://example.com

1 个答案:

答案 0 :(得分:4)

使用matcher.matches()而不是find()。匹配将使整个区域与模式匹配。