xslt 有 split() 功能吗?

Posted

技术标签:

【中文标题】xslt 有 split() 功能吗?【英文标题】:Does xslt have split() function? 【发布时间】:2011-03-21 04:02:50 【问题描述】:

如何根据分隔符拆分字符串?

给定一个字符串Topic1,Topic2,Topic3,我想根据,对字符串进行拆分生成:

Topic1 Topic2 Topic3

【问题讨论】:

Does XSLT have a Split() function?的可能重复 【参考方案1】:

在 XSLT 1.0 中,您必须构建一个递归模板。这个样式表:

<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="text/text()" name="tokenize">
        <xsl:param name="text" select="."/>
        <xsl:param name="separator" select="','"/>
        <xsl:choose>
            <xsl:when test="not(contains($text, $separator))">
                <item>
                    <xsl:value-of select="normalize-space($text)"/>
                </item>
            </xsl:when>
            <xsl:otherwise>
                <item>
                    <xsl:value-of select="normalize-space(substring-before($text, $separator))"/>
                </item>
                <xsl:call-template name="tokenize">
                    <xsl:with-param name="text" select="substring-after($text, $separator)"/>
                </xsl:call-template>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>

输入:

<root>
<text>Item1, Item2, Item3</text>
</root>

输出:

<root>
    <text>
        <item>Item1</item>
        <item>Item2</item>
        <item>Item3</item>
    </text>
</root>

在 XSLT 2.0 中,您拥有 tokenize() 核心功能。所以,这个样式表:

<xsl:stylesheet version="2.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="text/text()" name="tokenize">
        <xsl:param name="separator" select="','"/>
        <xsl:for-each select="tokenize(.,$separator)">
                <item>
                    <xsl:value-of select="normalize-space(.)"/>
                </item>
        </xsl:for-each>
    </xsl:template>
</xsl:stylesheet>

结果:

<root>
    <text>
        <item>Item1</item>
        <item>Item2</item>
        <item>Item3</item>
    </text>
</root>

【讨论】:

请你描述一下第一个模板在做什么 @ziggy 第一个模板是一个身份转换,这意味着它只是从 XML 源创建所有节点和属性的精确副本。【参考方案2】:

使用fn:tokenize

【讨论】:

这仅对 xslt 2.0 有效【参考方案3】:

没有split 函数,但您可以使用带有substring-beforesubstring-after 的递归模板来编写自己的。

详见this文章。

【讨论】:

【参考方案4】:

感谢用户 357812。我使用您的漂亮模板,几乎没有自定义,使其通用:

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

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

    <!-- Split child nodes -->
    <xsl:template match="*" mode="tokenize-children">
        <xsl:copy>
            <xsl:apply-templates select="@*" />
            <xsl:apply-templates select="*" mode="tokenize" />
        </xsl:copy>
    </xsl:template>

    <!-- Tokenize text node of child nodes -->
    <xsl:template match="*/text()" name="tokenize" mode="tokenize">
        <xsl:param name="text" select="."/>
        <xsl:param name="separator" select="','"/>
        <xsl:variable name="item"   select="name(..)" />
        <xsl:choose>
            <xsl:when test="not(contains($text, $separator))">
                <xsl:element name="$item">
                    <xsl:value-of select="normalize-space($text)"/>
                </xsl:element>
            </xsl:when>
            <xsl:otherwise>
                <xsl:element name="$item">
                    <xsl:value-of select="normalize-space(substring-before($text, $separator))"/>
                </xsl:element>
                <xsl:call-template name="tokenize">
                    <xsl:with-param name="text" select="substring-after($text, $separator)"/>
                </xsl:call-template>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>

</xsl:stylesheet>

【讨论】:

【参考方案5】:

XSLT 1.0与此处给出的其他答案相比,我需要一个轻微的变体。

输入:

1、2、3

输出:

1、2 和 3

输入:

1

输出

1

如果分隔符是空格而不是逗号,它仍然可以工作。

输入:

1 2 3

输出:

1、2 和 3

我刚刚创建了一个稍作修改的模板。

<xsl:template name="tokenizeString">
<xsl:param name="list"/>
<xsl:param name="delimiter"/>
<xsl:choose>
    <xsl:when test="contains($list, $delimiter)">      
        <xsl:variable name="listLength" select="string-length($list)" />
        <xsl:variable name="listLengthWithoutDelimiters" select="string-length(translate($list, $delimiter,''))" />
        <xsl:variable name="noOfDelimiters" select="($listLength - $listLengthWithoutDelimiters)" />

        <xsl:value-of select="substring-before($list,$delimiter)"/>
        <xsl:if test="$noOfDelimiters > 1">, </xsl:if>
        <xsl:if test="$noOfDelimiters = 1"> and </xsl:if>
        <xsl:call-template name="tokenizeString">
            <xsl:with-param name="list" select="substring-after($list,$delimiter)"/>
            <xsl:with-param name="delimiter" select="$delimiter"/>
        </xsl:call-template>
    </xsl:when>
     <xsl:otherwise>
        <xsl:choose>
            <xsl:when test="$list = ''">
                <xsl:text/>
            </xsl:when>
            <xsl:otherwise>
                 <xsl:value-of select="$list"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:otherwise>
</xsl:choose>

当分隔符为逗号时,可以如下调用模板

<xsl:call-template name="tokenizeString">
    <xsl:with-param name="list">1, 2, 3</xsl:with-param>
    <xsl:with-param name="delimiter">
        <xsl:value-of select="','" />
    </xsl:with-param>
</xsl:call-template>

当分隔符为空格时,可以如下调用模板

<xsl:call-template name="tokenizeString">
    <xsl:with-param name="list">1 2 3</xsl:with-param>
    <xsl:with-param name="delimiter">
        <xsl:value-of select="' '" />
    </xsl:with-param>
</xsl:call-template>

【讨论】:

【参考方案6】:

根据您使用的 XSL 处理器,您可能可以访问扩展函数 str:tokenize()。

所以要在,上拆分Topic1,Topic2,Topic3

<xsl:copy-of select="str:tokenize('Topic1,Topic2,Topic3', ',')"/>

这将给出结果;

<token>Topic1</token>
<token>Topic2</token>
<token>Topic3</token>

【讨论】:

以上是关于xslt 有 split() 功能吗?的主要内容,如果未能解决你的问题,请参考以下文章

xslt 1.0 中的拆分功能

有任何 XPath/XSLT/XQuery 3.0 特定的学习资源吗?

是否有 SharePoint XSLT 扩展功能的参考?

xslt 1.0 字符串替换功能

Hive 有字符串拆分功能吗?

如何在 XSLT 中启用文档功能(从 ASP.NET 调用)?