1

我有一个这样的 XML 文件:

<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT family (person)+>
<!ELEMENT person (name) >
<!ATTLIST person idnum ID #REQUIRED
gender (male | female) #REQUIRED
father IDREF #IMPLIED
mother IDREF #IMPLIED
children IDREFS #IMPLIED >
<!ELEMENT name (#PCDATA)>

<?xml version="1.0"?>
<!DOCTYPE family SYSTEM "family.dtd">
<family>
<person idnum = "T11" gender = "male" children ="T13 T14 T15"><name>11</name></person>
<person idnum = "T12" gender = "female" children ="T13 T14 T15"><name>12</name></person>
<person idnum = "T13" gender = "male" father="T11" mother="T12"><name>13</name></person>
<person idnum = "T14" gender = "male" father="T11" mother="T12"><name>14</name></person>
<person idnum = "T15" gender = "female" father="T11" mother="T12" children="T33"><name>15</name></person>
<person idnum = "T21" gender = "male" children="T23"><name>21</name></person>
<person idnum = "T22" gender = "female" children="T23"><name>22</name></person>
<person idnum = "T23" gender = "male" father="T21" mother="T22" children="T33"><name>23</name></person>
<person idnum = "T33" gender = "female" father="T23" mother="T15"><name>33</name></person>
</family>

我想检查查询:

  1. 所有没有孩子的人(male& female

  2. 所有没有男孩的人(即。SONS

我试过了 :

  1. /family/person[count(children)==0]

  2. /family/person[count(children)==0 and children!=male]

但它不起作用。

你能解释一下吗?谢谢 。

4

3 回答 3

2

XPath 中的等号运算符是“=”,而不是“==”。

写孩子!=男性大概是一厢情愿的想法,我希望你真的没有想到会起作用。

据推测,没有孩子的人可能通过没有 @children 属性或属性存在但空白来表示。您可以通过测试为您的第一个查询涵盖这两种情况/family/person[normalize-space(@children)='']

第二个查询比较困难,因为它涉及到一个连接。XPath 1.0 不能处理每个连接查询;XPath 2.0 可以。你没有说你正在使用哪个。另一个复杂情况是 id() 函数可能有点不稳定:处理管道并不总是保留有关哪些属性是 ID 的信息。但假设 id() 在您的环境中工作,您可以执行第二个查询(在 XPath 1.0 或 2.0 中)为

/family/person[not(id(@children)[@gender='male'])]
于 2012-05-24T09:55:45.290 回答
1

这些 xpath 不正确。您正在尝试查找子元素,但它们是属性。

它应该是这样的:

//person[not(@children)]
于 2012-05-24T09:02:31.037 回答
1
  1. 您像 xml-tag 一样使用“person”,但它是一个 tag-attribute。所以你最好使用@children。
  2. 使用 count(@children) 不起作用,因为只有一个名为 children 的属性
  3. 您不能从属性值中拼接和计数字符串
于 2012-05-24T09:05:05.363 回答