C#在规则中指定哪种查询语言来拉出两个书节点

时间:2009-09-29 16:30:04

标签: xpath c#-3.0 xquery

<?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表达式,如下所示。

/ bookstore / book [1] / title:(。+)

例如,上述内容将与“Everyday Italian”匹配

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

我不知道xpath是否可以做到。我在看XQuery,但看起来很罗嗦。 XSLT可能会这样做,但它是罗嗦的。有任何想法吗。

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

感谢。 鲍勃。

2 个答案:

答案 0 :(得分:0)

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

XPath Node Select

答案 1 :(得分: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子句可以找到每个书本节点的位置,并只返回特定的节点。