I am using the sax parser to parse a XML file. It works fine, but I don't want to parse the content of an <info> tag as it contains HTML which I want to save to a string. Can anyone tell me is there any way to go about doing this?.
Thanks
|
|
|
Though question. The best might be to preprocess the stream, escaping the part between |
|||
|
|
This is pseudocode. Adapt before use. Use at your own risk. This will not take care of <info> tags nested inside the outer info tag.
|
|||||||||
|
|
Is your XML very large? If not - you can load it all into a string then use XPath queries to access nodes of interest |
|||
|
|