14
XSLT에서 문자열이 null인지 또는 비어 있는지 확인
XSL 에서 값이 null인지 또는 비어 있는지 어떻게 확인할 수 있습니까? 예를 들어 categoryName비어 있다면 ? 구문을 선택할 때를 사용하고 있습니다. 예를 들면 다음과 같습니다. <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>