使用管道分隔符拆分文本并使用每个值

时间:2014-03-30 15:30:46

标签: xml xslt delimiter

我正在使用XSLT 1.0版,我需要拆分由管道分隔的文本字符串并使用xml元素中的每个值。例如,如果字符串是<Code>111|222|333|444</Code>,那么我希望输出为<Postalcode>111</Postalcode>

<Postalcode>222</Postalcode>
<Postalcode>333</Postalcode>
<Postalcode>444</Postalcode>

我必须使用XSLT执行此操作。感谢是否有人可以帮助我。

谢谢, 拉维

1 个答案:

答案 0 :(得分:1)

以下样式表有一个名为tokenize的模板,它根据传递的分隔符对字符串进行标记,并为每个标记创建Postalcode元素:

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