Question

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();
Was it helpful?

Solution

String text = "findme";
Element data = doc.select(String.format("tr:contains(%s)", text)).first();
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top