是否可以在xml上应用tempate之前在xsl参数上应用模板

时间:2010-07-20 05:14:01

标签: c# xslt param

我有一个字符串的xsl参数。我想解析该字符串,拆分它,并为每个子字符串值我想在xsl中应用模板。

这可能吗?如果是这样,你能告诉一个乐观的解决方案吗?

由于

2 个答案:

答案 0 :(得分:1)

不确定您的意思,但复制此模式可能有所帮助:XSLT - Best way to split and render comma separated text as HTML

答案 1 :(得分:1)

编辑:错误地提出问题,抱歉。

答案是

输入:

<secuence>Item1 Item2 Item3</secuence>

样式表:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="secuence/text()" name="secuence">
        <xsl:param name="string" select="."/>
        <xsl:param name="separator" select="' '"/>
        <xsl:if test="$string != ''">
            <xsl:choose>
                <xsl:when test="contains($string,$separator)">
                    <xsl:call-template name="secuence">
                        <xsl:with-param name="string" select="substring-before($string,$separator)"/>
                        <xsl:with-param name="separator" select="$separator"/>
                    </xsl:call-template>
                    <xsl:call-template name="secuence">
                        <xsl:with-param name="string" select="substring-after($string,$separator)"/>
                        <xsl:with-param name="separator" select="$separator"/>
                    </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                    <!-- Your desired template -->
                    <Item>
                        <xsl:value-of select="$string"/>
                    </Item>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:if>
    </xsl:template>
</xsl:stylesheet>

结果:

<secuence>
    <Item>Item1</Item>
    <Item>Item2</Item>
    <Item>Item3</Item>
</secuence>