XSLT 1.0将the_brown_fox转换为|布朗福克斯|

时间:2011-06-24 03:42:10

标签: xml xslt xslt-1.0

我的尝试:

<xsl:template name="GetDisplay">
        <xsl:param name="input"/>
        <xsl:text>|</xsl:text>
        <xsl:call-template name="GetDisplay_1">
            <xsl:with-param name="input" select="$input"/>
        </xsl:call-template>
        <xsl:text> |</xsl:text>
    </xsl:template>

<xsl:template name="GetDisplay_1">
    <xsl:param name="input"/>
    <xsl:text> </xsl:text>
    <xsl:call-template name="GetUpper">
        <xsl:with-param name="input" select="substring($input,1,1)"/>
    </xsl:call-template>
    <xsl:variable name="head" select="substring-before($input,'_')"/>
    <xsl:choose>
        <xsl:when test="$head=''">
            <xsl:value-of select="substring($input,2)"/>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="substring($head,2)"/>
            <xsl:call-template name="GetDisplay_1">
                <xsl:with-param name="input" select="substring-after($input,'_')"/>
            </xsl:call-template>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

<xsl:template name="GetUpper">
    <xsl:param name="input"/>
    <xsl:value-of select="translate($input,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/>
</xsl:template>

我不想使用2个函数( GetDisplay GetDisplay_1 ),而是希望只有1个函数来完成相同的结果(我们可能会留下 GetUpper 当然完好无损。)

甚至可能吗?

PS:严格来说XSLT 1.0谢谢。 (并没有EXSLT /等谢谢)

1 个答案:

答案 0 :(得分:1)

为什么不添加参数,仅在第一次调用时使用?

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">

    <xsl:output method="xml" indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="/test">
        <xsl:call-template name="GetDisplay_1">
            <xsl:with-param name="input" select="'the_brown_fox'"/>
            <xsl:with-param name="start" select="'start'"/>
        </xsl:call-template>
    </xsl:template>

    <xsl:template name="GetDisplay_1">
        <xsl:param name="input"/>
        <xsl:param name="start" select="''"/>

        <xsl:choose>

            <xsl:when test="$start='start'">
                <xsl:text>|</xsl:text>
                <xsl:call-template name="GetDisplay_1">
                    <xsl:with-param name="input" select="$input"/>
                </xsl:call-template>
                <xsl:text> |</xsl:text>
            </xsl:when>

            <xsl:otherwise>
                <xsl:text> </xsl:text>
                <xsl:call-template name="GetUpper">
                    <xsl:with-param name="input" select="substring($input,1,1)"/>
                </xsl:call-template>
                <xsl:variable name="head" select="substring-before($input,'_')"/>

                <xsl:choose>
                    <xsl:when test="$head=''">
                        <xsl:value-of select="substring($input,2)"/>
                    </xsl:when>
                    <xsl:otherwise>
                        <xsl:value-of select="substring($head,2)"/>
                        <xsl:call-template name="GetDisplay_1">
                            <xsl:with-param name="input" select="substring-after($input,'_')"/>
                        </xsl:call-template>
                    </xsl:otherwise>
                </xsl:choose>
            </xsl:otherwise>

        </xsl:choose>
    </xsl:template>

    <xsl:template name="GetUpper">
        <xsl:param name="input"/>
        <xsl:value-of select="translate($input,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/>
    </xsl:template>

</xsl:stylesheet>