Morning, How can you get only txt from this xml item(description) for example?
<description><![CDATA[<b>
<font color="#000000">hello world...</font>
</b>]]></description>
my code now is
if (cureent.getNodeName().equalsIgnoreCase("description")){
item.setDescription(cureent.getTextContent());
and result printed is:
<![CDATA[<b><font color="#000000">hello world...</font></b>]]>
this is what I need out print :
hello world...
Thanks All