私は持っている
String content= "<a data-hovercard=\"/ajax/hovercard/group.php?id=180552688740185\">
<a data-hovercard=\"/ajax/hovercard/group.php?id=21392174\">"
"group.php?id="
と の間のすべての ID を取得したい"\""
例: 180552688740185
これが私のコードです:
String content1 = "";
Pattern script1 = Pattern.compile("group.php?id=.*?\"");
Matcher mscript1 = script1.matcher(content);
while (mscript1.find()) {
content1 += mscript1.group() + "\n";
}
しかし、何らかの理由で機能しません。
アドバイスをいただけますか?