0
<?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 消息与规则匹配,如果规则命中,则处理数据包。为了获得匹配,我使用 xpath 来选择 xml 中的单个值,并在规则中将它们指定为组合的 xpath:regexp 表达式,类似这样。

/书店/书[1]/标题:(.+)

例如,上面将匹配“Everyday Italian”

但是我正在尝试找到一个查询或者一个新的查询语言表达式,它允许我为上述经典 msdn docs book.xml 选择所有书籍节点,这样如果我在规则中指定查询表达式,我可以使用解析器将其提升,并直接针对 xml 文件使用它来拉出书籍节点。

我不知道 xpath 是否可以做到。我在看 XQuery,但它似乎罗嗦。XSLT 可能可以做到,但它很冗长。有任何想法吗。

他们是一种指定表达式的简单方法,以便它会提升所有书籍节点,或者说 1 和 2,或 1 和 3。

谢谢。鲍勃。

4

2 回答 2

0

以下设计不同的问题间接回答了它。

XPath 节点选择

于 2009-10-04T14:05:18.920 回答
0

使用 xquery 和 flwor:

nicholas@mordor:~/flwor/position$ 
nicholas@mordor:~/flwor/position$ basex position.xq 
<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>nicholas@mordor:~/flwor/position$ 
nicholas@mordor:~/flwor/position$ 
nicholas@mordor:~/flwor/position$ cat position.xq 

xquery version "3.1";

let $doc := doc("bookstore.xml")
let $books := $doc/bookstore/book

for $book at $p in $books 
where $p gt 1 and $p lt 4
return $book
nicholas@mordor:~/flwor/position$ 
nicholas@mordor:~/flwor/position$ cat bookstore.xml 
<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>nicholas@mordor:~/flwor/position$ 

where 子句可以找到每个书节点的位置,并且只返回特定节点。

于 2020-12-16T13:37:51.150 回答