Linq To XML:获得自身结点,及相邻的上/下一个结点

XElement firstParticipant; // A full document with all the bells and whistles. XDocument xDocument = new XDocument( new XDeclaration("1.0", "UTF-8", "yes"), new XDocumentType("BookParticipants", null, "BookParticipants.dtd", null), new XProcessingInstruction("BookCataloger", "out-of-print"), // Notice on the next line that we are saving off a reference to the first // BookParticipant element. new XElement("BookParticipants", new XComment("Begin Of List"), firstParticipant = new XElement("BookParticipant", new XAttribute("type", "Author"), new XElement("FirstName", "Joe"), new XElement("LastName", "Rattz")), new XElement("BookParticipant", new XAttribute("type", "Editor"), new XElement("FirstName", "Ewan"), new XElement("LastName", "Buckingham")), new XComment("End Of List"))); foreach (XNode node in firstParticipant.NodesAfterSelf()) { Console.WriteLine(node); }

上面给firstParticipant结点前后加了两个XComment结点、

因此打印结果是这样的

<BookParticipant type="Editor"> <FirstName>Ewan</FirstName> <LastName>Buckingham</LastName> </BookParticipant> <!--End Of List-->

上面已经把相邻的元素"<!--End Of List-->"也打印出来了

那么只想打印下一个XElement怎么办呢,当然可以再用TypeOf,但还有个更简便的方法,

就是XNode.ElementsAfterSelf()

上面循环写成这样

foreach (XNode node in firstParticipant.ElementsAfterSelf())

那么结果只有元素出现了

<BookParticipant type="Editor"> <FirstName>Ewan</FirstName> <LastName>Buckingham</LastName> </BookParticipant>

相应的还有XNode.NodesBeforeSelf() ,XNode.ElementsBeforeSelf()

道理是一样的,不再写出打印结果了

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值