我有这块 xslt if-else 案例,想知道是否有办法让我直接与 unicode 字符进行比较?
类似于下面显示的代码行?或者 xslt 是否有一些我可以用于此目的的内置功能?即把unicode改成html实体并通过那个方法比较?
当然,如果有更好的方法,请开火。谢谢。
<xsl:choose>
<xsl:when test="status">
<xsl:if test="status='تم المحاولة'">
<font color="#00CC00"><xsl:value-of select="status" /></font><br/>
<!--a href="/Elearning_Platform/xfiles/reports/view_reports.modcgi?asm_lid={@lom_id}&did={@dispatch_id}&rm_student_id={@person_id}&report_type=2">[View Results]</a-->
</xsl:if>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>