开发者

Select XML nodes by attribute in AS3

开发者 https://www.devze.com 2023-01-07 05:01 出处:网络
Trying to par开发者_运维知识库se some XML (over which I have no control!) In C# I would do something like:

Trying to par开发者_运维知识库se some XML (over which I have no control!)

In C# I would do something like:

XmlNodeList xnList = xml.SelectNodes("/Names/Name[@type='M']");

Can this be done in AS3?


short answer, yes:

var xnList:XMLList = xml.Names.Name.(@type == "M");

longer version:

var xml:XML = <Root>
        <Names>
            <Name type="M" value="John Doe" />
            <Name type="F" value="Jane Doe" />
            <Name type="M" value="John Hancock" />
        </Names>
        <Other />
      </Root>
     
var xnList:XMLList = xml.Names.Name.(@type == "M");

//test
for each (var xnNode:XML in xnList) trace(xnNode.toXMLString())

There's a pretty good E4X tutorial on the Yahoo Developer Network.

HTH

0

精彩评论

暂无评论...
验证码 换一张
取 消