I have a XML in the following format.
<student>
<class><![CDATA[4B]]></class>
</student>
I am parsing this XML with SAX parser.
While parsing I am getting the output as:
class:>[CDATA[4B]]<
How can I handle the < adn > in SAX. Is there any way of converting them to < and > before giving it to the parser or can we handle them using SAX only?