0

誰かがjsoupでhtmlページの正確な要素を識別するために使用する例を手伝ってくれますか?getElementsMatchingOwnTextステータスのような2つのテキストがあります、新しいステータスメソッドが最初に発生した場合は新しいステータスではなくパラメータとして渡されます。

前もって感謝します

4

1 に答える 1

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$)") )
于 2013-02-10T13:53:28.780 に答える