gpt4 book ai didi

xml - 使用 XSLT 在 XML 文件中添加文本行

转载 作者:行者123 更新时间:2023-12-04 06:18:26 26 4
gpt4 key购买 nike

我有一个简单的 XML 文件

 <Config new="Y" >
<schema_path value="/var/tmp/sh.xsd"/>
<collection name="new" >
<unit-list>
<Instance active="Y" unit_type="xp" unit_name="table"/>
</unit-list>
</collection>
</Config>

我想插入一个新元素 Instance进入 xml unit-list
<Instance active="N" unit_type="linux" unit_name="door" />

怎么做 ?

最佳答案

这将复制输入 XML 中的所有内容并添加 Instanceunit-list :

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

<xsl:template match="unit-list">
<unit-list>
<xsl:apply-templates />
<Instance active="N" unit_type="linux" unit_name="door" />
</unit-list>
</xsl:template>

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

</xsl:stylesheet>

关于xml - 使用 XSLT 在 XML 文件中添加文本行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6916881/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com