Hi,
 
It seems I got extra #Text node in my DOM object. For example, if my XML is as follows:
<Root>
    <FirstElement>Value</FirstElement>
</Root>
 
My DOM tree will look like:
 
+ ELEMENT: Root
    + #TEXT:
    + ELEMENT: FirstElement
        + #TEXT: Value
        + #TEXT:
 
Is there a way to avoid those extra empty #Text Node?
 
Thx in advance.

Reply via email to