使用XSLT复制XML中的所有节点,并支持特殊情况

前端之家收集整理的这篇文章主要介绍了使用XSLT复制XML中的所有节点,并支持特殊情况前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
说我有一个大的XML文件,具有以下结构:
<MyXml>
  <Data1>
    <Node1>1234</Node1>
    <Node2>abc<Node2>
    <Node3>gfdf</Node3>
    ...
    <Node10000>more text</Node10000>
  </Data1>
  <Data2>
    ...
  </Data2>
</MyXml>

我想将这个XML转换成另外一个看起来完全一样的XML,但是有一个连接到特定节点的字符串,比如Node766。我正在使用XSLT,并且想知道如何按照原样复制每个按钮,除了Node766,在输出之前我必须先做一些事情。

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

<!--Identity template,provides default behavior that copies all content into the output -->
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

    <!--More specific template for Node766 that provides custom behavior -->
    <xsl:template match="Node766">  
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
            <!--Do something special for Node766,like add a certain string-->
            <xsl:text> add some text </xsl:text>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>
原文链接:https://www.f2er.com/xml/293448.html

猜你在找的XML相关文章