Parsing XML with nodes containing underscores.
Posted
by alvincrespo
on Stack Overflow
See other posts from Stack Overflow
or by alvincrespo
Published on 2010-05-05T23:56:15Z
Indexed on
2010/05/06
1:28 UTC
Read the original article
Hit count: 285
How do I parse an XML document that contains nodes where underscores exist?
<some_xml>
<child_node>
<child width_info="" height_info="" />
</childnode>
</some_xml>
I tried this:
for each (var item:XML in Environment._XMLData.some_xml.child_node.child){
trace(child.@width_info);
}
But that does'nt seem to work. I can't change the XML either because its from a third party. Any help would be great. Thanks in advance!
© Stack Overflow or respective owner