1

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

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.com也适用于http://aaa.example.commm. 只需要匹配 example.com 的子域更新:感谢您的回答,现在它可以工作我面临另一个问题,这个正则表达式不匹配http://example.com

4

1 回答 1

4

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

于 2012-09-12T18:08:37.210 回答