我正在尝试匹配子域和域。 我使用了这段代码。
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
答案 0 :(得分:4)
使用matcher.matches()而不是find()。匹配将使整个区域与模式匹配。