Advertisement
Guest User

Untitled

a guest
Jul 30th, 2012
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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