我正在使用XSLT 1.0版,我需要拆分由管道分隔的文本字符串并使用xml元素中的每个值。例如,如果字符串是<Code>111|222|333|444</Code>
,那么我希望输出为<Postalcode>111</Postalcode>
<Postalcode>222</Postalcode>
<Postalcode>333</Postalcode>
<Postalcode>444</Postalcode>
我必须使用XSLT执行此操作。感谢是否有人可以帮助我。
谢谢, 拉维
答案 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>