Advertisement
Guest User

Untitled

a guest
Jul 30th, 2012
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1.         Document doc = Jsoup.connect("http://wikitravel.org/en/San_Francisco").get();
  2.         Elements section = doc.select("h3:contains(climate) ~ *");
  3.         section.select("h3:contains(literature) ~ *").remove();
  4.         section.select("h3").remove();
  5.         System.out.println(section.html());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement