HTMLの結果を取得しようとしています:
private static final String PATTERN = "(ReportSession=)[0-9A-Za-z]{24}";`
...
Pattern pattern = Pattern.compile(PATTERN);
Matcher matcher = pattern.matcher(".axd?ReportSession=frytm055l51aigbigh5xzrin\u");
if(matcher.find()){
textView1.setText(matcher.group(1));
}
出力は次のとおりですが、バックスラッシュの前にReportSession=
全体を取得する必要があります。ReportSession=frytm055l51aigbigh5xzrin
何か案は?