zoukankan      html  css  js  c++  java
  • XPath 语法规则

    http://www.cnblogs.com/michaelsea/archive/2007/10/18/929230.html
    XPath is a language for finding information in an XML document. XPath is used to navigate through elements and attributes in an XML document.
    Xpath是一种能够在XML文档中寻找信息的语言。它通过XML文档中的元素和属性来进行导航。

    What You Should Already Know
    你应具备的知识
    Before you continue you should have a basic understanding of the following:
    在你继续前你应该具备以下知识的基础:
    ·       HTML / XHTML
    ·       XML / XML Namespaces[命名空间]

    What is XPath?
    什么是XPath?
    ·       XPath is a syntax for defining parts of an XML document
    XPath 是针对XML文档部分内容定义的语法
    ·       XPath uses path expressions to navigate in XML documents
    XPath 使用路径表达式在XML文档中导航
    ·       XPath contains a library of standard functions
    XPath 包含了一系列标准函数
    ·       XPath is a major element in XSLT
    XPath XSLT当中是一个主要的元素
    ·       XPath is a W3C Standard
    XPathW3C标准

    XPath Path Expressions
    XPath 路径表达式
    XPath uses path expressions to select nodes or node-sets in an XML document. These path expressions look very much like the expressions you see when you work with a traditional computer file system.
    XPath 使用路径表达式来选择XML文档中的nodes()或是node-set(节集)。这些路径表达式看上去与你平时所见的传统计算机文件系统路径非常地相似。

    XPath Standard Functions
    XPath 标准函数
    XPath includes over 100 built-in functions. There are functions for string values, numeric values, date and time comparison, node and QName manipulation, sequence manipulation, Boolean values, and more.
    XPath包含了数量超过100的内置函数。这些函数针对字符串值,数字值,日期和时间比较,节操作,顺序操作,布尔值,等等。

    XPath is Used in XSLT
    XPath被用在XSLT
    XPath is a major element in the XSLT standard. Without XPath knowledge you will not be able to create XSLT documents.
    XSLT标准中XPath是主要的元素。没有XPath知识你将很难建立XSLT文档。
    XQuery and XPointer are both built on XPath expressions. XQuery 1.0 and XPath 2.0 share the same data model and support the same functions and operators. 
    XQueryXPointer都建立于XPath表达式。XQuery 1.0  XPath 2.0共享相同的数据模型并支持相同的函数和操作

    XPath is a W3C Standard
    XPathW3C标准
    XPath became a W3C Recommendation 16. November 1999.
    XPat19991116成为W3C的推荐标准
    XPath was designed to be used by XSLT, XPointer and other XML parsing software.
    XPath被设计成为用语XSLT,XPoniter以及其他XML解析的软件。
    XPath Nodes()
    翻译:Linyupark / 2006-03-24
    In XPath, there are seven kinds of nodes: element, attribute, text, namespace, processing-instruction, comment, and document (root) nodes.
    XPath中有七种nodes():元素,属性,文字,命名空间,处理说明,注释,和文档()节。

    XPath Terminology
    XPath术语
    Nodes/
    In XPath, there are seven kinds of nodes: element, attribute, text, namespace, processing-instruction, comment, and document (root) nodes. XML documents are treated as trees of nodes. The root of the tree is called the document node (or root node).
    XML文档被视为数状的节。树的根部被称为文档的节(或根节)
    Look at the following XML document:
    观察下面的XML文档:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <bookstore>
    <book>
     <title lang="en">Harry Potter</title>
     <author>J K. Rowling</author> 
     <year>2005</year>
     <price>29.99</price>
    </book>
    </bookstore>
    Example of nodes in the XML document above:
    上面举例的XML文档的节有:
    <bookstore> (document node)
    <author>J K. Rowling</author> (element node)
    lang="en" (attribute node)
    Atomic values
    原子值
    Atomic values are nodes with no children or parent.
    原子值是那些没有子或父的节(无上下关系)。
    Example of atomic values:
    举例中的原子值:
    J K. Rowling
    "en"
    Items
    项目
    Items are atomic values or nodes.
    项目是原子值或节。

    Relationship of Nodes
    节之间的关系
    Parent/
    Each element and attribute has one parent.
    每个元素和属性有一父亲。
    In the following example; the book element is the parent of the title, author, year, and price:
    下面的举例中:book元素是titleauthoryearprice的父亲
    <book>
     <title>Harry Potter</title>
     <author>J K. Rowling</author>
     <year>2005</year>
     <price>29.99</price>
    </book>
    Children/
    Element nodes may have zero, one or more children.
    元素节可能有0个或多个子
    In the following example; the title, author, year, and price elements are all children of the book element:
    下面的举例中:title,author,yearprice元素都是book元素的子元素
    <book>
     <title>Harry Potter</title>
     <author>J K. Rowling</author>
     <year>2005</year>
     <price>29.99</price>
    </book>
    Siblings/
    Nodes that have the same parent.
    指那些有相同父的
    In the following example; the title, author, year, and price elements are all siblings:
    下面的举例中title, author, year,  price元素都为兄弟
    <book>
     <title>Harry Potter</title>
     <author>J K. Rowling</author>
     <year>2005</year>
     <price>29.99</price>
    </book>
    Ancestors/
    A node's parent, parent's parent, etc.
    节的父,父的父....都为祖
    In the following example; the ancestors of the title element are the book element and the bookstore element:
    下面的举例中:book元素和bookstore元素都为title元素的祖元素
    <bookstore>
    <book>
     <title>Harry Potter</title>
     <author>J K. Rowling</author>
     <year>2005</year>
     <price>29.99</price>
    </book>
    </bookstore>
    Descendants/
    A node's children, children's children, etc.
    节的子,子的子...都为孙
    In the following example; descendants of the bookstore element are the book, title, author, year, and price elements:
    下面的举例中:bookstore元素的孙有book,title,author,year以及price元素
    <bookstore>
    <book>
     <title>Harry Potter</title>
     <author>J K. Rowling</author>
     <year>2005</year>
     <price>29.99</price>
    </book>
    </bookstore>
     
    XPath语法
    翻译:Linyupark / 2006-03-24
    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文档
    <?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:
    一些非常有用的路径表达式:
    表达式
    描述
    nodename
    Selects 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:
    下面我们所列举的表格有路径表达式以及其结果:
    路径表达式
    结果
    bookstore
    Selects all the child nodes of the bookstore element[选择所有bookstore元素的子节]
    /bookstore
    Selects the root element bookstore
    Note: If the path starts with a slash ( / ) it always represents an absolute path to an element!
    [选择了bookstore的根元素。注意:如果路径的开始为(/)那此路径一定是到该元素的绝对路径]
    bookstore/book
    Selects all book elements that are children of bookstore[选择了所有在bookstore的子元素book元素所包含的所有元素(其实就为bookstorebook元素所包含的元素)]
    //book
    Selects all book elements no matter where they are in the document[选择所有为book元素的内容而不管book元素处于何处(有不同的父也没关系)]
    bookstore//book
    Selects all book elements that are descendant of the bookstore element, no matter where they are under the bookstore element[bookstore元素内所有含有book元素的元素内容(只要book元素的祖元素为bookstore元素那都符合条件)]
    //@lang
    Selects 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属性并且值为engtitle元素]
    /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[选择所有bookstorebook元素里price元素内容大于35.00book元素]
    /bookstore/book[price>35.00]/title
    Selects all the title elements of the book elements of the bookstore element that have a price element with a value greater than 35.00[选择bookstorebook的子元素title,并且其兄弟元素price的内容得大于35.00]
     

    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/price
    Selects all the title AND price elements of all book elements[选择所有booktitleprice元素]
    //title | //price
    Selects all the title AND price elements in the document[选择所有titleprice元素]
    /bookstore/book/title | //price
    Selects all the title elements of the book element of the bookstore element AND all the price elements in the document[选择所有book里的title元素和所有price元素]
     
    XPath 
    翻译:Linyupark / 2006-03-24
    The XML Example Document
    XML举例文档
    We will use the following XML document in the examples below.
    我么将使用该XML文档进行下面的举例说明
    <?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>
     

    XPath Axes
    XPath
    An axis defines a node-set relative to the current node.
    轴定义了相对于当前节的节集
    轴名
    结果
    ancestor
    Selects all ancestors (parent, grandparent, etc.) of the current node[选择了当前节的所有祖(父,祖父,等等)]
    ancestor-or-self
    Selects all ancestors (parent, grandparent, etc.) of the current node and the current node itself[选择当前节的所有祖并且还有当前节自己]
    attribute
    Selects all attributes of the current node[选择所有当前节的属性]
    child
    Selects all children of the current node[选择所有当前节的子]
    descendant
    Selects all descendants (children, grandchildren, etc.) of the current node[选择所有当前节的孙(子,孙子,等等)]
    descendant-or-self
    Selects all descendants (children, grandchildren, etc.) of the current node and the current node itself[选择当前节的所有孙以及它本身]
    following
    Selects everything in the document after the closing tag of the current node[选择所有在关闭当前节标签后的所有内容]
    following-sibling
    Selects all siblings after the current node[选择所有当前节后的兄]
    namespace
    Selects all namespace nodes of the current node[选择所有当前节的命名空间]
    parent
    Selects the parent of the current node[选择当前节的父]
    preceding
    Selects everything in the document that is before the start tag of the current node[选择当前节之前的所有内容]
    preceding-sibling
    Selects all siblings before the current node[选择所有当前节之前的兄]
    self
    Selects the current node[选择当前节]
     

    Location Path Expression
    路径表达试定位
    A location path can be absolute or relative.
    定位路径可以是绝对的也可以是相对的
    An absolute location path starts with a slash ( / ) and a relative location path does not. In both cases the location path consists of one or more steps, each separated by a slash:
    绝对定位的路径由(/)开始,而相对定位就不这样。定位的路径由一个或多个步骤所组成,每部分由(/)相分隔:
    An absolute location path:
    /step/step/...
    A relative location path:
    step/step/...
    Each step is evaluated against the nodes in the current node-set.
    在当前的节集中每步的赋值是逆向的
    A step consists of:
    ·       an axis (defines the tree-relationship between the selected nodes and the current node)
    ·       a node-test (identifies a node within an axis)[在轴中鉴定节]
    ·       zero or more predicates (to further refine the selected node-set)[0个或多个谓语可以来更好的选择节]
    The syntax for a location step is:
    定位的语法
    axisname::nodetest[predicate]
    Examples
    实例
    Example
    结果
    child::book
    Selects all book nodes that are children of the current node[选择当前节点下所有为book的子节点]
    attribute::lang
    Selects the lang attribute of the current node[选择当前节点下所有属性为lang的内容]
    child::*
    Selects all children of the current node[选择当前节下所有的子节]
    attribute::*
    Selects all attributes of the current node[选择当前节所有的属性]
    child::text()
    Selects all text child nodes of the current node[选择当前节点所有子节点的文字]
    child::node()
    Selects all child nodes of the current node[选择所有当前节点的子节点]
    descendant::book
    Selects all book descendants of the current node[选择当前节点所有为book的孙节点]
    ancestor::book
    Selects all book ancestors of the current node[选择所有当前祖节点为book的节点]
    ancestor-or-self::book
    Selects all book ancestors of the current node - and the current as well if it is a book node[当前节点和其祖节点为book的节点]
    child::*/child::price
    Selects all price grandchildren of the current node[当前节点所有含price的孙子节点]
     
    XPath运算符
    翻译:无 / 2006-03-24
    An XPath expression returns either a node-set, a string, a Boolean, or a number.

    XPath Operators
    Below is a list of the operators that can be used in XPath expressions:
    Operator
    Description
    Example
    Return value
    |
    Computes two node-sets
    //book | //cd
    Returns a node-set with all book and cd elements
    +
    Addition
    6 + 4
    10
    -
    Subtraction
    6 - 4
    2
    *
    Multiplication
    6 * 4
    24
    div
    Division
    8 div 4
    2
    =
    Equal
    price=9.80
    true if price is 9.80
    false if price is 9.90
    !=
    Not equal
    price!=9.80
    true if price is 9.90
    false if price is 9.80
    Less than
    price<9.80
    true if price is 9.00
    false if price is 9.80
    <=
    Less than or equal to
    price<=9.80
    true if price is 9.00
    false if price is 9.90
    Greater than
    price>9.80
    true if price is 9.90
    false if price is 9.80
    >=
    Greater than or equal to
    price>=9.80
    true if price is 9.90
    false if price is 9.70
    or
    or
    price=9.80 or price=9.70
    true if price is 9.80
    false if price is 9.50
    and
    and
    price>9.00 and price<9.90
    true if price is 9.80
    false if price is 8.50
    mod
    Modulus (division remainder)
    5 mod 2
    1
     
    XPath实例
    翻译:Linyupark / 2006-03-24
    Let's try to learn some basic XPath syntax by looking at some examples.
    让我们来尝试通过观察一些实例来学习基础的XPath语法

    The XML Example Document
    We will use the following XML document in the examples below.
    我们将使用下面这个XML文档来进行实例
    "books.xml":
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <bookstore>
    <book category="COOKING">
     <title lang="en">Everyday Italian</title>
     <author>Giada De Laurentiis</author>
     <year>2005</year>
     <price>30.00</price>
    </book>
    <book category="CHILDREN">
     <title lang="en">Harry Potter</title>
     <author>J K. Rowling</author>
     <year>2005</year>
     <price>29.99</price>
    </book>
    <book category="WEB">
     <title lang="en">XQuery Kick Start</title>
     <author>James McGovern</author>
     <author>Per Bothner</author>
     <author>Kurt Cagle</author>
     <author>James Linn</author>
     <author>Vaidyanathan Nagarajan</author>
     <year>2003</year>
     <price>49.99</price>
    </book>
    <book category="WEB">
     <title lang="en">Learning XML</title>
     <author>Erik T. Ray</author>
     <year>2003</year>
     <price>39.95</price>
    </book>
    </bookstore>

    Selecting Nodes
    选择节点
    We will use the Microsoft XMLDOM object to load the XML document and the selectNodes() function to select nodes from the XML document:
    我们使用了XMLDOM对象来加载XML文档并用selectNode()函数来进行XML文档上节点的选择:
    set xmlDoc=CreateObject("Microsoft.XMLDOM")
    xmlDoc.async="false"
    xmlDoc.load("books.xml")
    xmlDoc.selectNodes(path expression)
     

    Select all book Nodes
    选择所有book节点
    The following example selects all the book nodes under the bookstore element:
    下面这个实例就会选择所有bookstore元素以下的book节点:
    xmlDoc.selectNodes("/bookstore/book")

    Select the First book Node
    选择第一个book节点
    The following example selects only the first book node under the bookstore element:
    xmlDoc.selectNodes("/bookstore/book[0]")
    Note: IE 5 and 6 has implemented that [0] should be the first node, but according to the W3C standard it should have been [1]!!

    Select the prices
    选择prices
    The following example selects the text from all the price nodes:
    xmlDoc.selectNodes("/bookstore/book/price/text()")

    Selecting price Nodes with Price>35
    选择price大于35price节点
    The following example selects all the price nodes with a price higher than 35:
    xmlDoc.selectNodes("/bookstore/book[price>35]/price")

    Selecting title Nodes with Price>35
    选择Price大于35title节点
    The following example selects all the title nodes with a price higher than 35:
    xmlDoc.selectNodes("/bookstore/book[price>35]/title")
  • 相关阅读:
    使用SpringAOP获取一次请求流经方法的调用次数和调用耗时
    疫苗之殇与理性应对之道
    【做更好的职场人】理性、弹性、开放的沟通
    使用IntelljIDEA生成接口的类继承图及装饰器模式
    订单导出应对大流量订单导出时的设计问题
    预发和线上的自动化对比工具微框架
    从实战角度看如何构建高质量的软件:一线工程师的一份质量手记
    代码问题及对策
    若干设计经验教训小记
    输入输出无依赖型函数的GroovySpock单测模板的自动生成工具(上)
  • 原文地址:https://www.cnblogs.com/hua-an/p/5258690.html
Copyright © 2011-2022 走看看