Urgent help in parsing &
How do i handle in SAX parser &for example if my xml file look like this<book><title>xyz&abc</title></book>How would i get xyy&abc
[215 byte] By [
rsg8] at [2007-9-26 2:40:08]

what parser are you using ?I believe that parsers are not required to return element content in one chunk. You might end up getting three text nodes: xyz, &, and abc. - can you check on that ? If not, elaborate a bit on your environment like: what parser, SAX or DOM, etc.
lk555 at 2007-6-29 10:13:45 >
