您好基本上我需要找到多少個字符是一個變量使用XSL檢查多少個字符是一個變量的XSL
if characters($Title == 12) {
execute code;
}
基本上像上面顯然這是不正確任何一個可以幫助?
您好基本上我需要找到多少個字符是一個變量使用XSL檢查多少個字符是一個變量的XSL
if characters($Title == 12) {
execute code;
}
基本上像上面顯然這是不正確任何一個可以幫助?
或者你可以做等同於,如果在XSL/else語句:
<xsl:choose>
<xsl:when test="string-length($Title) = 12">
<!-- code when the check is true -->
</xsl:when>
<xsl:otherwise>
<!-- code when it's false -->
</xsl:otherwise>
</xsl:choose>
在XPath 1.0:
string-length($title) = 12
採取通知該區別標記也將被計數。
在XPath 2.0你cuold使用:
string-length(normalize-unicode($title)) = 12
基本上我需要找到 角色多少都在一個變量使用XSL
if characters($Title == 12) { execute code; }
使用:
<xsl:if test="string-length($Title) = 12">
<!-- Your code here -->
</xsl:if>
非常感謝您的幫助MAQ – NWhite 2010-08-02 08:11:00
我也似乎注意到,這並不計數空間''..有沒有一種方法可以讓這些計數以及? – NWhite 2010-08-02 12:30:38