XPath语法

XPath uses path expressions to select nodes or node-sets in an XML document. The node is selected by following a path or steps.
XPath使用路径表达式来选择XML文档的节或是节集。顺着路径或步骤来选择节。

The XML Example Document(XML实例文档)

We will use the following XML document in the examples below.
举例中我们将使用下面的XML文档

name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-9745813534263228&dt=1194448919687&lmt=1194341578&format=336x280_as&output=html&correlator=1194448919671&url=http%3A%2F%2Fyuchunba.blog.china.com%2F200711%2F1262396.html&color_bg=FFFFFF&color_text=000000&color_link=000000&color_url=333333&color_border=FFFFFF&ad_type=text&ref=http%3A%2F%2Fyuchunba.blog.china.com%2F&cc=100&ga_vid=87692441.1194448920&ga_sid=1194448920&ga_hid=1301208269&flash=9&u_h=768&u_w=1024&u_ah=734&u_aw=1024&u_cd=16&u_tz=480&u_java=true" frameborder="0" width="336" scrolling="no" height="280" allowtransparency="allowtransparency">

<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>
<book>
<title lang="eng">Harry Potter</title>
<price>29.99</price>
</book>
<book>
<title lang="eng">Learning XML</title>
<price>39.95</price>
</book>
</bookstore>

 


 

Selecting Nodes(选择节)

XPath uses path expressions to select nodes in an XML document. The node is selected by following a path or steps. The most useful path expressions are listed below:
一些非常有用的路径表达式:

表达式描述
nodenameSelects all child nodes of the node[选择所有目前节的子节]
/Selects from the root node[从根节进行选择]
//Selects nodes in the document from the current node that match the selection no matter where they are [选择文档中相吻合的节而不管其在文档的何处]
.Selects the current node[选择当前节]
..Selects the parent of the current node[当前节的父节]
@Selects attributes[选择属性]

Examples(实例)

In the table below we have listed some path expressions and the result of the expressions:
下面我们所列举的表格有路径表达式以及其结果:

路径表达式结果
bookstoreSelects all the child nodes of the bookstore element[选择所有bookstore元素的子节]
/bookstoreSelects the root element bookstore

Note: If the path starts with a slash ( / ) it always represents an absolute path to an element!

[选择了bookstore的根元素。注意:如果路径的开始为(/)那此路径一定是到该元素的绝对路径]
bookstore/bookSelects all book elements that are children of bookstore[选择了所有在bookstore的子元素book元素所包含的所有元素(其实就为bookstore里book元素所包含的元素)]
//bookSelects all book elements no matter where they are in the document[选择所有为book元素的内容而不管book元素处于何处(有不同的父也没关系)]
bookstore//bookSelects all book elements that are descendant of the bookstore element, no matter where they are under the bookstore element[在bookstore元素内所有含有book元素的元素内容(只要book元素的祖元素为bookstore元素那都符合条件)]
//@langSelects all attributes that are named lang[选择所有属性名为lang的属性]


 

Predicates(谓语)

Predicates are used to find a specific node or a node that contains a specific value.
谓语用来指定明确的节所含有的特殊的值

Predicates are always embedded in square brackets.
谓语被嵌入在中括号

Examples(举例)

In the table below we have listed some path expressions with predicates and the result of the expressions:
下面的表格列举了一些使用了谓语的路径表达式以及其产生的结果:

路径表达式结果
/bookstore/book[1] Selects the first book element that is the child of the bookstore element[选择了bookstore里的第一个book元素]
/bookstore/book[last()]Selects the last book element that is the child of the bookstore element[选择bookstore里最后一个book元素]
/bookstore/book[last()-1]Selects the last but one book element that is the child of the bookstore element[bookstore中倒数第二个book元素]
/bookstore/book[position()<3]Selects the first two book elements that are children of the bookstore element[在bookstore中前两个book元素]
//title[@lang]Selects all the title elements that have an attribute named lang[选择所有含有lang属性的title元素]
//title[@lang='eng']Selects all the title elements that have an attribute named lang with a value of 'eng'[选择所有含有lang属性并且值为eng的title元素]
/bookstore/book[price>35.00]Selects all the book elements of the bookstore element that have a price element with a value greater than 35.00[选择所有bookstore中book元素里price元素内容大于35.00的book元素]
/bookstore/book[price>35.00]/titleSelects all the title elements of the book elements of the bookstore element that have a price element with a value greater than 35.00[选择bookstore中book的子元素title,并且其兄弟元素price的内容得大于35.00]
name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-9745813534263228&dt=1194448919687&lmt=1194341578&format=336x280_as&output=html&correlator=1194448919671&url=http%3A%2F%2Fyuchunba.blog.china.com%2F200711%2F1262396.html&color_bg=FFFFFF&color_text=000000&color_link=000000&color_url=333333&color_border=FFFFFF&ad_type=text&ref=http%3A%2F%2Fyuchunba.blog.china.com%2F&cc=100&ga_vid=87692441.1194448920&ga_sid=1194448920&ga_hid=1301208269&flash=9&u_h=768&u_w=1024&u_ah=734&u_aw=1024&u_cd=16&u_tz=480&u_java=true" frameborder="0" width="336" scrolling="no" height="280" allowtransparency="allowtransparency">



Selecting Unknown Nodes(选择未知的节)

XPath wildcards can be used to select unknown XML elements.
XPath的通配符可以用来选择未知的XML元素

通配符描述
*Matches any element node[相吻合的所有元素节]
@*Matches any attribute node[相吻合的所有属性节]
node()Matches any node of any kind[吻合任何类型的节]

Examples实例

In the table below we have listed some path expressions and the result of the expressions:
下面的表格我们将列举一些路径表达式以及它们的结果

路径表达式结果
/bookstore/*Selects all the child nodes of the bookstore element[选择所有bookstore的子节]
//*Selects all elements in the document[选择所有文档中的元素]
//title[@*]Selects all title elements which have any attribute[选择元素为title并且其含有属性]


 

Selecting Several Paths(选择数个路径)

By using the | operator in an XPath expression you can select several paths.
通过在XPath中使用 | 你可以选择数个路径

Examples(实例)

In the table below we have listed some path expressions and the result of the expressions:
下面的表格我们会列举一些路径表达式以及其结果:

路径表达结果
//book/title | //book/priceSelects all the title AND price elements of all book elements[选择所有book里title和price元素]
//title | //priceSelects all the title AND price elements in the document[选择所有title和price元素]
/bookstore/book/title | //priceSelects all the title elements of the book element of the bookstore element AND all the price elements in the document[选择所有book里的title元素和所有price元素]
 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值