我正在尝试从名为“this”的 HTML 页面中获取值,例如:
name="this" value="XXXX-XXX-xxxxx-xxxxx"
我试着用
Pattern pat = Pattern.compile("name=\"this\" value=\"(.*?)\"");
Matcher match = pat.matcher(sb);
if(match.matches())
return match.group();
但什么也没回来。我该怎么办?