假设我有一个像下面这样的链接以及一堆其他链接
http://testttt.com/met?tag1=x&tag2=y&tag3=z%20a
如果它以http://testttt.com/met开头,我想提取整个链接
我尝试执行以下操作,但没有成功
Pattern pattern = Pattern.compile("http://testttt.com/met?[a-zA-Z][0-9]");
Matcher match = pattern.matcher("http://testttt.com/met?tag1=x&tag2=y&tag3=z%20a");
if (match.find()) {
System.out.println("match found");
}