【发布时间】:2014-01-17 10:33:24
【问题描述】:
我有一个关于 XPath 表达式的 W3C 规范(EBNF 表示法)的初学者问题。可以在以下位置找到规范:http://www.w3.org/TR/xpath/。特别是我有一个关于理解以下表达式的问题:
(//attribute::name | //attribute::id)[starts-with(string(self::node()), "be") or starts-with(string(self::node()), "1")]
这似乎是一个有效的表达式。我使用http://www.freeformatter.com/xpath-tester.html 验证了以下 XML 文档:
<documentRoot>
<!-- Test data -->
<?xc value="2" ?>
<parent name="data" >
<child id="1" name="alpha" >Some Text</child>
<child id="2" name="beta" >
<grandchild id="2.1" name="beta-alpha" ></grandchild>
<grandchild id="2.2" name="beta-beta" ></grandchild>
</child>
<pet name="tigger" type="cat" >
<data>
<birthday month="sept" day="19" ></birthday>
<food name="Acme Cat Food" ></food>
</data>
</pet>
<pet name="Fido" type="dog" >
<description>
Large dog!
</description>
<data>
<birthday month="feb" day="3" ></birthday>
<food name="Acme Dog Food" ></food>
</data>
</pet>
<rogue name="is this real?" >
<data>
Hates dogs!
</data>
</rogue>
<child id="3" name="gamma" mark="yes" >
<!-- A comment -->
<description>
Likes all animals - especially dogs!
</description>
<grandchild id="3.1" name="gamma-alpha" >
<![CDATA[ Some non-parsable character data ]]>
</grandchild>
<grandchild id="3.2" name="gamma-beta" ></grandchild>
</child>
</parent>
</documentRoot>
这给了我以下结果:
Attribute='id="1"'
Attribute='name="beta"'
Attribute='name="beta-alpha"'
Attribute='name="beta-beta"'
我不清楚哪个 EBNF 产生序列会产生上述查询。
感谢您的帮助。
【问题讨论】:
标签: xml parsing xpath w3c ebnf