xsl-list
[Top] [All Lists]

Selecting other than certain children

2003-01-01 22:50:58

Assuming an element 'n' with children elements 'c', and some number of
other, unknown, children elements, the only way that I know to test for the
presence of elements other than 'c' is:

<xsl:template match="n">
  <xsl:if test="*[name() != 'c']">
    <!-- Do stuff -->
  </xsl:if>
</xsl:template>

This strikes me as somewhat awkward. Is there a more direct test?

// Gregory Murphy <Gregory(_dot_)Murphy(_at_)sun(_dot_)com>
// Software Engineer
// Customer Network Platform, Sun Microsystems


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>