誰かがjsoupでhtmlページの正確な要素を識別するために使用する例を手伝ってくれますか?getElementsMatchingOwnText
ステータスのような2つのテキストがあります、新しいステータスメソッドが最初に発生した場合は新しいステータスではなくパラメータとして渡されます。
前もって感謝します
これはあなたが必要とするものですか?
html の例:
<html>
<head></head>
<body>
<p>new status</p>
<p>status</p>
</body>
</html>
例:
Document doc = ...
for( Element element : doc.getElementsMatchingOwnText("(?i)^status$") )
{
System.out.println(element);
}
出力:
<p>status</p>
Jsoup Selector APIを使用した代替:
for( Element element : doc.select("p:matchesOwn((?i)^status$)") )