Code snippets, code sharing, PHP code sharing, Java code sharing, Ruby code sharing, Python code sharing, HTML code sharing, CSS code sharing, SQL code sharing, and JavaScript code sharing
The content of orders. xml is as follows:
Remarkable Office Supplies
Electronic Protractor
42.99
Invisible Ink
200.25
// The code snippet is from www.sharejs.com/codes/csharp/7775 C # code 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 () ;}/// the code snippet is from: www.sharejs.com/codes/csharp/7775
The above is the detailed content of the code instance for finding the specified element of xml through xpath in C #. For more information, see other related articles in the first PHP community!