0

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

<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>
4

2 回答 2

1

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

<xsl:template match="record[string-length(employeeNumber) > 8]"/>
于 2012-05-10T12:53:20.780 回答
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>
于 2012-05-10T12:57:41.713 回答