14
Controlla se una stringa è nulla o vuota in XSLT
Come posso verificare se un valore è nullo o vuoto con XSL ? Ad esempio, se categoryNameè vuoto? Sto usando un quando scelgo il costrutto. Per esempio: <xsl:choose> <xsl:when test="categoryName !=null"> <xsl:value-of select="categoryName " /> </xsl:when> <xsl:otherwise> <xsl:value-of select="other" /> </xsl:otherwise> </xsl:choose>