質問

I am very new to java and jsoup and cant figure one simple thing out, hope you guys can help.

This works:

Element data = doc.select("tr:contains(Findme)").first();

But how can i use string instead of static text? This wont work:

String IneedToFindThis = "Findme";
Element data = doc.select("tr:contains(IneedToFindThis)").first();
役に立ちましたか?

解決

String text = "findme";
Element data = doc.select(String.format("tr:contains(%s)", text)).first();
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top