xslt 1.0 - 按几个标准查找唯一值

时间:2016-03-09 10:06:48

标签: xslt unique

我有以下XML:

<library>
<elements>
    <element name="books">
        <property name="author">A</property>
        <property name="select">true</property>
    </element>
    <element name="books">
        <property name="author">B</property>
        <property name="select">false</property>
    </element>  
    <element name="books">
        <property name="author">C</property>
        <property name="select">true</property>
    </element>  
    <element name="books">
        <property name="author">A</property>
        <property name="select">true</property>
    </element>  
</elements>
</library>

我需要输出所有元素的名称=&#34; books&#34;,这些元素被选中(selected = true)并且按作者名称唯一。 必须使用xslt 1.0。

预期结果:                 作者:A                 作者:C

必须仅为作者A和C输出数据。

提前致谢!

1 个答案:

答案 0 :(得分:0)

 not(.=preceding::*) 

检索for循环中给定xpath的唯一值

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
      <xsl:output method="text"/>

     <xsl:template match="/">           
        <ul> 
      <xsl:for-each select="//elements/element[@name = 'books' and property[@name = 'select' and .='true'] ]/property[@name = 'author' and not(.=preceding::*)]">
    <li>
      <xsl:value-of select="concat('author :',.)"/>
        </li>   
      </xsl:for-each>            
</ul>
  </xsl:template>

</xsl:stylesheet>

OUTPUT XML:

作者:作者:C