C#通过xpath查找xml指定元素的方法
程序员文章站
2023-11-27 12:33:58
本文实例讲述了c#通过xpath查找xml指定元素的方法。分享给大家供大家参考。具体如下:
orders.xml文档内容如下
本文实例讲述了c#通过xpath查找xml指定元素的方法。分享给大家供大家参考。具体如下:
orders.xml文档内容如下
<?xml version="1.0"?> <order id="2004-01-30.195496"> <client id="ros-930252034"> <name>remarkable office supplies</name> </client> <items> <item id="1001"> <name>electronic protractor</name> <price>42.99</price> </item> <item id="1002"> <name>invisible ink</name> <price>200.25</price> </item> </items> </order>
c#代码
using system; using system.xml; public class xpathselectnodes { private static void main() { // load the document. xmldocument doc = new xmldocument(); doc.load("orders.xml"); xmlnodelist nodes = doc.selectnodes("/order/items/item/name"); foreach (xmlnode node in nodes) { console.writeline(node.innertext); } console.readline(); } }
输出结果
electronic protractor invisible ink
希望本文所述对大家的c#程序设计有所帮助。
上一篇: 自己常用到的自定义公共类(已测试通过)
下一篇: C#中timer定时器用法实例
推荐阅读
-
js通过id获取元素的值(js查找元素的方法)
-
C#通过xpath查找xml指定元素的方法
-
C#查找列表中所有重复出现元素的方法
-
C#使用二分查找法判断指定字符的方法
-
【转载】C#中List集合使用RemoveRange方法移除指定索引开始的一段元素
-
【转载】 C#中通过Where方法查找出所有符合条件的元素集合
-
【转载】C#中List集合使用LastOrDefault方法查找出最后一个符合条件的元素
-
【转载】C#中List集合使用RemoveAt方法移除指定索引位置的元素
-
【转载】C#的ArrayList使用IndexOf方法查找第一个符合条件的元素位置
-
【转载】 C#中List集合使用First方法查找符合条件的第一个元素