|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: CDATA sections in W3C XML Infoset
> Given that the DOM allows adjacent Text nodes unless
> normalise() is called, and CDATASection nodes extend
> the interfaces of Text, how would your processing
> change if you just dealt with Text alone?
After I get the tree, I call normalize() on it. Suppose my processing
is to count people whose first name is "Karl", in a document like
<people><person><first>Karl</first><last>Käfer</last></person></people>
Then I'd do
karls = 0
root.normalize()
for person in root.getElementsByTagName("person"):
first = person.getElementsByTagName("first")[0]
for n in first.childNodes:
if n.nodeType == Node.TEXT_NODE and n.data == "Karl":
break
else:
continue
karl += 1
Now, if there are CDATA sections in there, this algorithm will break:
the string Karl could still be split across several nodes.
Regards,
Martin
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








