我有一个包含以下数据的 xml 文件:
<ConfigurationEntries>
<ConfigurationUpdates enabled="false">
<ListOfValues>
<add id="1" />
<add id="2" />
<add id="3" />
</ListOfValues>
</ConfigurationUpdates>
</ConfigurationEntries>
我想删除下面的条目ListOfValues
并在那里添加一个条目:<add id="100" />
到目前为止,我有这个:
<xsl:template match="/ConfigurationEntries/ConfigurationUpdates/ListOfValues">
<xsl:copy>
<clear />
<xsl:apply-templates select="@*" />
// Not sure what goes here.
<xsl:apply-templates select="*" />
</xsl:copy>
</xsl:template
有人可以帮忙吗?
谢谢