Hi, I've a file with the content
<p> some text </p>
When I try to extract this tag using
NodeList linkList = new NodeList (); htmlNode.collectInto(linkList,nodeFilter);
where the nodeFilter is a simple
new TagNameFilter("p")
it extracts for me <p>
when i do a toHtml();
why can't the parser extract the whole tag <p> some text </p>
pls help
Hello does anyone have the solution to this problem? why cat htmlparser recognize tags like <p></p> <em></em>
etc
Log in to post a comment.
Hi,
I've a file with the content
<p> some text </p>
When I try to extract this tag using
NodeList linkList = new NodeList ();
htmlNode.collectInto(linkList,nodeFilter);
where the nodeFilter is a simple
new TagNameFilter("p")
it extracts for me
<p>
when i do a toHtml();
why can't the parser extract the whole tag
<p> some text </p>
pls help
Hello
does anyone have the solution to this problem?
why cat htmlparser recognize tags like
<p></p>
<em></em>
etc