To check if String is Null or Empty in XSL you can use the following snippet.
Sample XSL
<xsl:choose>
<xsl:when test="fieldToTest != ''">
<xsl:value-of select="Field1Value" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="Field2Value" />
</xsl:otherwise>
</xsl:choose>
RT @CodeSnippetsNET: Hwo to check if String is Null or Empty in #XSL http://t.co/pK2szaFLpK #xml #markup #stylesheets #coding #dev #program…
RT @CodeSnippetsNET: Hwo to check if String is Null or Empty in #XSL http://t.co/pK2szaFLpK #xml #markup #stylesheets #coding #dev #program…
RT @CodeSnippetsNET: Hwo to check if String is Null or Empty in #XSL http://t.co/pK2szaFLpK #xml #markup #stylesheets #coding #dev #program…