Let\'s say i have a html fragment like this:
foo bar foobar baz
<
With Jsoup:
final String html = " foo bar foobar baz
";
Document doc = Jsoup.parse(html);
System.out.println(doc.text());
Output:
foo bar foobar baz
If you want only the text of p-tag, use this instead of doc.text()
:
doc.select("p").text();
... or only body:
doc.body().text();
final String html = "Tarthatatlan biztonsági viszonyok
"
+ "Tarthatatlan biztonsági viszonyok
";
Document doc = Jsoup.parse(html);
for( Element element : doc.select("p") )
{
System.out.println(element.text());
// eg. you can use a StringBuilder and append lines here ...
}
Output:
Tarthatatlan biztonsági viszonyok
Tarthatatlan biztonsági viszonyok