0

如何使用 XML 文件中的 XPath 使用大小写匹配来搜索多个子节点值。我有以下 XML 文件。

<catalog>
  <book id="BK-1001">
    <title>C# 2005 Programmer's Reference</title>
    <author>Adrian Kignsley</author>
    <genre>.NET</genre>
    <price>0</price>
    <publish_date>2006-11-1</publish_date>
    <description>This is reference book.</description>
  </book>
  </catalog>

我想使用 Match Case 根据标题、作者和流派进行搜索。我正在使用这个表达式:

"book[title='" + strInputString_1 + "'] | book[author='" + strInputString_2 + "'] | book[genre='" + strInputString_3 + "']"

但是,它没有用。我怎么能做到这一点?

4

1 回答 1

0

您缺少//XPath 开头的 。

"//book[title='" + strInputString_1 + "'] | //book[author='" + strInputString_2 + "'] | //book[genre='" + strInputString_3 + "']"

你可以试试这个,虽然:

"//book/title[.='" + strInputString_1 + "'] | //book/author[.='" + strInputString_2 + "'] | //book/genre[.='" + strInputString_3 + "']"
于 2012-10-09T21:37:10.367 回答