我使用模板作为
<xsl:template name="myTemplate">
我需要计算其值为“ON”和“OFF”的级别节点的数量。
我想要的最终报告:
this file contains three "ON" values and two "OFF" values.
查看我的 xml 文件的一部分。
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml:stylesheet type='text/xsl' href='view.xsl'?>
<DOC>
<show>VIEW<show/>
<Entry>
<light>ae</light>
<level>ON</level>
</Entry>
<Entry>
<light>by</light>
<level>OFF</level>
</Entry>
<Entry>
<light>ac</light>
<level>OFF</level>
</Entry>
<Entry>
<light>pc</light>
<level>ON</level>
</Entry>
<Entry>
<light>tc</light>
<level>ON</level>
</Entry>
感谢您的帮助