Heim  >  Artikel  >  Backend-Entwicklung  >  Verrückte XML-Studiennotizen (12)------------XPath

Verrückte XML-Studiennotizen (12)------------XPath

黄舟
黄舟Original
2017-02-21 14:47:011410Durchsuche


XPath ist eine Sprache zum Auffinden von Informationen in XML-Dokumenten. XPath wird zum Navigieren durch Elemente und Attribute in XML-Dokumenten verwendet.

Was ist XPath?

  • XPath verwendet Pfadausdrücke zum Navigieren in XML-Dokumenten

  • XPath enthält eine Bibliothek von Standardfunktionen

  • XPath ist das Hauptelement in XSLT

  • XPath ist ein W3C-Standard

XPath-Pfadausdruck

XPath verwendet Pfadausdrücke, um Knoten oder Knotensätze in XML-Dokumenten auszuwählen. Diese Pfadausdrücke sind den Ausdrücken, die wir in normalen Computerdateisystemen sehen, sehr ähnlich.

XPath-Standardfunktionen

XPath enthält über 100 integrierte Funktionen. Diese Funktionen werden für Zeichenfolgenwerte, numerische Werte, Datums- und Zeitvergleiche, Knoten- und QName-Verarbeitung, Sequenzverarbeitung, logische Werte und mehr verwendet.


In XPath gibt es sieben Arten von Knoten: Elemente, Attribute, Text, Namespaces, Verarbeitungsanweisungen, Kommentare und Dokumentenknoten (oder zum Wurzelknoten werden).

XPath-Terminologie

Knoten (Knoten)

In XPath gibt es sieben Arten von Knoten: Elemente , Attribute, Text, Namespaces, Verarbeitungsanweisungen, Kommentare und Dokumentknoten (Stammknoten). XML-Dokumente werden als Knotenbäume behandelt. Die Wurzel des Baums wird Dokumentknoten oder Wurzelknoten genannt.

Bitte schauen Sie sich das folgende XML-Dokument an:

<?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>

Beispiel für Knoten im obigen XML-Dokument:

<bookstore> (文档节点)
<author>J K. Rowling</author> (元素节点)
lang="en" (属性节点)

Grundwert (oder Atomwert, Atomwert). )

Der Grundwert ist ein Knoten ohne übergeordnetes oder untergeordnetes Element.

Beispiele für Grundwerte:

J K. Rowling
"en"

Item (Item)

Items sind Grundwerte oder Knoten.

Knotenbeziehung

Übergeordnetes Element (Übergeordnetes Element)

Jedes Element und Attribut hat ein übergeordnetes Element.

Im folgenden Beispiel ist das Buchelement das übergeordnete Element der Elemente „Titel“, „Autor“, „Jahr“ und „Preis“:

<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>

Untergeordnete Elemente

Elementknoten können Null haben, ein oder mehrere Kinder.

Im folgenden Beispiel sind die Elemente Titel, Autor, Jahr und Preis alle untergeordnete Elemente des Buchelements:

<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>

Geschwister

haben denselben übergeordneten Knoten

Im folgenden Beispiel sind die Elemente Titel, Autor, Jahr und Preis alle Geschwister:

<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>

Ancestor

Das übergeordnete Element eines Knotens, Vater des Vaters , usw.

Im folgenden Beispiel sind die Vorfahren des Titelelements das Buchelement und das Buchladenelement:



<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>

Descendant (Descendant)

Das untergeordnete Element eines Knotens , das Kind des Sohnes, warte.

Im folgenden Beispiel sind die Nachkommen von bookstore die Elemente Buch, Titel, Autor, Jahr und Preis:



<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>


XPath Axes (Koordinatenachsen)

XML-Instanzdokument

Wir werden dieses XML-Dokument im folgenden Beispiel verwenden:

<?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>

Der Knotensatz des aktuellen Knotens.

位置路径表达式

位置路径可以是绝对的,也可以是相对的。

绝对路径起始于正斜杠( / ),而相对路径不会这样。在两种情况中,位置路径均包括一个或多个步,每个步均被斜杠分割:

绝对位置路径:

/step/step/...

相对位置路径:

step/step/...

每个步均根据当前节点集之中的节点来进行计算。

步(step)包括:

  • 轴(axis)

  • 定义所选节点与当前节点之间的树关系

  • 节点测试(node-test)

  • 识别某个轴内部的节点

  • 零个或者更多谓语(predicate)

  • 更深入地提炼所选的节点集

步的语法:

轴名称::节点测试[谓语]

实例

例子 结果
child::book 选取所有属于当前节点的子元素的 book 节点
attribute::lang 选取当前节点的 lang 属性
child::* 选取当前节点的所有子元素
attribute::* 选取当前节点的所有属性
child::text() 选取当前节点的所有文本子节点
child::node() 选取当前节点的所有子节点
descendant::book 选取当前节点的所有 book 后代
ancestor::book 选择当前节点的所有 book 先辈
ancestor-or-self::book 选取当前节点的所有book先辈以及当前节点(假如此节点是book节点的话)
child::*/child::price 选取当前节点的所有 price 孙。

 

 

XPath 运算符

 


XPath 表达式可返回节点集、字符串、逻辑值以及数字。

XPath 运算符

下面列出了可用在 XPath 表达式中的运算符:

运算符 描述 实例 返回值
| 计算两个节点集 //book | //cd 返回所有带有 book 和 cd 元素的节点集
+ 加法 6 + 4 10
- 减法 6 - 4 2
* 乘法 6 * 4 24
p 除法 8 p 4 2
= 等于 price=9.80

如果 price 是 9.80,则返回 true。

如果 price 是 9.90,则返回 fasle。

!= 不等于 price!=9.80

如果 price 是 9.90,则返回 true。

如果 price 是 9.80,则返回 fasle。

9fc5941b8cd202545c198dc5280966e0 大于 price>9.80

如果 price 是 9.90,则返回 true。

如果 price 是 9.80,则返回 fasle。

>= 大于或等于 price>=9.80

如果 price 是 9.90,则返回 true。

如果 price 是 9.70,则返回 fasle。

or price=9.80 or price=9.70

如果 price 是 9.80,则返回 true。

如果 price 是 9.50,则返回 fasle。

and price>9.00 and price<9.90

如果 price 是 9.80,则返回 true。

如果 price 是 8.50,则返回 fasle。

mod 计算除法的余数 5 mod 2 1

 

 

XML实例文档

我们将在下面的例子中使用这个 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>

 

节点选取

我们将使用微软的 XML DOM 对象来载入 XML 文档,并使用 selectNodes() 函数从 XML 文档选取节点:

set xmlDoc=CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("books.xml")

xmlDoc.selectNodes(路径表达式)

选取所有的 book 节点

下面的这个例子选取了 bookstore 元素下所有的 book 节点:

xmlDoc.selectNodes("/bookstore/book")

 

选取第一个 book 节点

下面的例子仅选取 bookstore 元素下第一个 book 节点:

xmlDoc.selectNodes("/bookstore/book[0]")

 

 

选取 price

下面的例子从所有的 price 节点选取文本:

xmlDoc.selectNodes("/bookstore/book/price/text()")

 

选取价格高于 35 的 price 价格

下面的例子会选取所有价格高于 35 的 price 节点:

xmlDoc.selectNodes("/bookstore/book[price>35]/price")

 

选取价格高于 35 的 title 节点

下面的例子会选取所有价格高于 35 的 title 节点:

xmlDoc.selectNodes("/bookstore/book[price>35]/title")

 

以上就是疯狂XML学习笔记(12)------------XPath的内容,更多相关内容请关注PHP中文网(www.php.cn)!

 

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn