使用Schematron识别xml文本元素

时间:2013-02-01 17:16:40

标签: xml schematron

是否可以在XPath中创建一个标识xml元素的规则:

<A>something...<A>

我正在使用Schematron,我需要指定一些元素不能像示例中那样有子元素,这就是我需要识别它们的原因。

提前致谢

1 个答案:

答案 0 :(得分:2)

对于以下输入:

<?xml version="1.0" encoding="utf-8"?>
<root>
  <a>Only Text</a>
  <a><b>Child node</b></a>  
  <a><b>Child node</b>Mixed content</a>
</root>

这些Schematron规则应该做你想要的:

<?xml version="1.0" encoding="UTF-8"?>
<iso:schema xmlns:iso="http://purl.oclc.org/dsdl/schematron">
<iso:pattern id="children tests">
    <iso:rule context="a">
        <iso:assert test="child::node()">
            Element has nodes
        </iso:assert>
        <iso:report test="child::*">
            Element has child elements
        </iso:report>
        <iso:assert test="empty(child::text())">
            Element has text
        </iso:assert>
        <iso:report test="child::text() and empty(child::*)">
            Element has only text
        </iso:report>               
    </iso:rule>
</iso:pattern>
</iso:schema>

Testing Schematron rules in XML ValidatorBuddy