从XML标记值创建变量标记

时间:2011-08-30 08:20:29

标签: xml xslt

是否可以更改给定的XML结构

<Cars>
    <Car>Honda</Car>
    <Car>Ferrari</Car>
</Cars>

使用XLST

<Cars>
    <Honda></Honda>
    <Ferrari></Ferrari>
</Cars>

我对XSLT了解不多,但我不确定如何创建变量标签。

谢谢大家。 我很欣赏这三个答案,并且已经投票了。

3 个答案:

答案 0 :(得分:3)

您正在寻找xsl:element,其名称是在运行时使用大括号计算的,如下所示:

<xsl:template match="/">
    <xsl:for-each select="Cars/Car">
        <xsl:element name="{.}"/>
    </xsl:for-each>
</xsl:template>

答案 1 :(得分:3)

您可以使用<xsl:element>按给定名称创建元素。例如。在你的情况下,它将是这样的:

<xsl:template match="Car">
    <xsl:element name="{text()}"></xsl:element>
</xsl:template>

UPD: 这是一个片段。通常,这是一种很好的方法,用于修改树中的几个节点。您可以定义复制模板:

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

它只是按原样复制整个xml树,然后为特定元素,属性等添加一些自定义模板,例如至于上面的“汽车”。

答案 2 :(得分:2)

试试这个:

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/">
        <xsl:apply-templates />
    </xsl:template>

    <xsl:template match="Cars">
        <Cars>
            <xsl:for-each select="Car">
                <xsl:element name="{.}"/>
            </xsl:for-each>
        </Cars>
    </xsl:template>
</xsl:stylesheet>