I am trying to parse the plain text using Jericho with the following code:
public static String getPlainText(String html) {
Source htmlSource = new Source(html);
Segment htmlSeg = new Segment(htmlSource, 0, html.length());
Renderer htmlRend = new Renderer(htmlSeg);
// System.out.println(htmlRend.toString());
return htmlRend.toString();
}
However for the following html fragment:
Phone (808) 845-0000<br />
Fax (808) 842-3616
<a href="mailto:helpdesk@progressive-hi.com">
helpdesk@progressive-hi.com</a>
I am getting the output:
Phone (808) 845-0000 Fax (808) 842-3616helpdesk@progressive-hi.com
Now all I wanted is all the texts within the tags should be separated from one another ie fax and email should be separated from each other. Is there any way to accomplish this?
Thanks