XSLT匹配记录长度< 8

时间:2012-05-10 12:39:16

标签: xslt

我创建了以下XSLT,它将确保发送的字段仅填充数字,但是我不知道如何调整它以包含额外的语句以确保它不超过8个字符。< / p>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output omit-xml-declaration="yes" indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="node()|@*">
        <xsl:copy>
            <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="record[translate(employeeNumber, '0123456789', '')]"/>
</xsl:stylesheet>

2 个答案:

答案 0 :(得分:1)

您是否说要忽略employeeNumbers大于8个字符的记录?如果是这样,你可以添加另一个匹配的模板来忽略它们

<xsl:template match="record[string-length(employeeNumber) > 8]"/>

答案 1 :(得分:0)

这是一个可以用来截断字符串的模板......希望这能完成这项工作!

<xsl:template name="fullortruncate">
    <xsl:param name="input" />
    <xsl:choose>
        <xsl:when test="string-length($input)>8">
            <xsl:value-of select="substring($input, 0, 8)"/>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$input"/>
        </xsl:otherwise>
    </xsl:choose> 
</xsl:template>

您可以使用call-template

调用模板
<xsl:call-template name="fullortruncate">
<xsl:with-param name="input" select="[your input]"/>
</xsl:call-template>