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