0

以下のデータを含む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

誰か助けてくれませんか?

ありがとう

4

2 に答える 2

0

うまくいけば、これはあなたを助けるでしょう。

<xsl:template match="/ConfigurationEntries/ConfigurationUpdates/ListOfValues">
    <ListOfValues>
        <add id="100" />
    </ListOfValues>
</xsl:template>
于 2013-04-23T06:39:02.090 に答える