逗号分隔的xml元素的XSLT转换

时间:2014-02-13 03:28:06

标签: xml xslt transform

我有一个像这个例子的xml doc(显示空格)

<block>
 <Text>FirstName: Bob, LastName: Smith, PhoneNumber: 12345</Text>
<block>

并希望在XSLT中进行转换,以便xml变为

<block>
 <Text>
    <FirstName>Bob</FirstName>
    <LastName>Smith</LastName>
    <PhoneNumber>12345</Phonenumber>
 </Text>
<block>

非常感谢任何帮助,非常感谢!

4 个答案:

答案 0 :(得分:1)

下面的样式表使用命名的递归模板作为文本内容的标记器。它读取逗号前的第一个文本,并在分号前面创建一个包含字符串的元素,其中包含分号后面的字符串。然后它再次使用逗号后面的字符串调用该方法,直到找不到逗号并创建最后一个元素。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">

    <xsl:template match="block">
        <xsl:copy>
            <xsl:apply-templates />
        </xsl:copy>
    </xsl:template>

    <xsl:template match="Text">
        <xsl:copy>
            <xsl:call-template name="tokenize">
                <xsl:with-param name="text" select="."/>
                <xsl:with-param name="separator" select="','" />
            </xsl:call-template>
        </xsl:copy>
    </xsl:template>

    <xsl:template name="tokenize">
        <xsl:param name="text"/>
        <xsl:param name="separator"/>
        <xsl:choose>
            <xsl:when test="not(contains($text, $separator))">
                <xsl:element name="{substring-before($text, ':')}">
                    <xsl:value-of select="substring-after($text, ': ')"/>
                </xsl:element>
            </xsl:when>
            <xsl:otherwise>
                <xsl:element name="{substring-before($text, ':')}">
                    <xsl:value-of select="substring-before(substring-after($text, ': '), $separator)"/>
                </xsl:element>
                <xsl:call-template name="tokenize">
                    <xsl:with-param name="text" select="substring-after($text, concat($separator, ' '))"/>
                    <xsl:with-param name="separator" select="','" />
                </xsl:call-template>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>

答案 1 :(得分:1)

您可以使用此样式表:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>

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

<xsl:template match="Text">
    <xsl:copy>
        <xsl:for-each select="tokenize(text(), ',')">
            <xsl:element name="{normalize-space(tokenize(.,':')[1])}">
                <xsl:value-of select="normalize-space(tokenize(.,':')[2])"/>
            </xsl:element>
        </xsl:for-each>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

答案 2 :(得分:0)

XSLT 2.0 解决方案,该解决方案使用 tokenize() 功能拆分“,”并生成所需内容:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
    <xsl:output indent="yes"/>

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

    <xsl:template match="Text">
        <xsl:copy>
            <xsl:for-each select="tokenize(., ',\s?')">
                <xsl:element name="{substring-before(current(), ': ')}">
                    <xsl:value-of select="substring-after(., ': ')"/>
                </xsl:element>
            </xsl:for-each>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>

使用递归模板的 XSLT 1.0 解决方案:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output indent="yes"/>

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

    <xsl:template match="Text">
        <xsl:copy>
            <xsl:call-template name="split"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template name="split">
        <xsl:param name="val" select="."/>
        <xsl:param name="delimiter" select="','"/>
        <xsl:if test="string-length($val) and contains($val, ':')">
            <xsl:variable name="item" select="substring-before(concat($val, $delimiter), $delimiter)"/>
            <xsl:element name="{substring-before($item, ': ')}">
                <xsl:value-of select="substring-after($item, ': ')"/>
            </xsl:element>
            <xsl:call-template name="split">
                <xsl:with-param name="val" select="substring-after($val, $delimiter)"/>
                <xsl:with-param name="delimiter" select="$delimiter"/>
            </xsl:call-template>
        </xsl:if>
    </xsl:template>
</xsl:stylesheet>

答案 3 :(得分:0)

这是使用XSLT 2.0的那个

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="2.0">

    <xsl:output omit-xml-declaration="yes"/>

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

    <xsl:template match="Text">
        <xsl:copy>
            <xsl:for-each select="tokenize(., ', ')">
                <xsl:element name="{substring-before(., ':')}">
                    <xsl:value-of select="substring-after(., ': ')"/>
                </xsl:element>
            </xsl:for-each>
            </xsl:copy>
    </xsl:template>

</xsl:stylesheet>

应用于输入XML时,输出为:

<block>
    <Text>
        <FirstName>Bob</FirstName>
        <LastName>Smith</LastName>
        <PhoneNumber>12345</PhoneNumber>
    </Text>
</block>