One way to cul links with text() that equals some predefined strings is straightforward:
Elements links = document.getElementsByTag("a");
for (Element link : links) {
if (link.text().equals("So & so") || link.text().equals("such & such") {
// add link.attr("href") to our container;
}
}
But as the number of text() conditions grows, this approach looks less and less efficient.
Is there a better way to accomplish this in Jsoup?