我正在尝试匹配子域和域。我用了这段代码。
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