以下のデータを含むxmlファイルがあります。
<ConfigurationEntries>
<ConfigurationUpdates enabled="false">
<ListOfValues>
<add id="1" />
<add id="2" />
<add id="3" />
</ListOfValues>
</ConfigurationUpdates>
</ConfigurationEntries>
ListOfValues
下のエントリを削除し、そこに 1 つのエントリを追加したいと思います。<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
誰か助けてくれませんか?
ありがとう