This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

How can I test if element is empty?


Hi

So,how can I test if element is empty with xsl?

example element
<elem/> or <elem></elem>

I have tried this
<xsl:choose>
	<xsl:when test="string-length(elem)">
		<xsl:value-of select="elem"/>
	</xsl:when>				
	<xsl:otherwise>
		<xsl:value-of select="NOelem"/>
	</xsl:otherwise>
</xsl:choose>

and this
<xsl:when test="elem == ''">

but that don't work

Thanks in advance
Denis Kranjcec



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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]