我有下面的XML:計算XML文檔的XPath
<?xml version="1.0" encoding="UTF-8" ?>
<bookstore>
<book>
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<account_number>1111 1111 1111 1111</account_number>
<year>2005</year>
<price>30.00</price>
</book>
<book>
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<account_number>2222 2222 2222 2222</account_number>
<year>2005</year>
<price>29.99</price>
</book>
<book>
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<account_number>3333 3333 3333 3333</account_number>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
我感興趣的是找到的中的XPath ACCOUNT_NUMBER具有價值 。 請指導我如何讓XPath知道標籤及其價值。
* + 1 *進行比較之前轉換爲其字符串內容以獲得良好的解釋。 –
非常感謝您的回覆。這裏面的另一個挑戰是如果我沒有使用XML文件,只知道一些標籤及其值,那麼如何找到該標籤的XPath?從標籤到其根目錄需要一些逆向工程。 – NewUser3542