3

我需要复制一个节点及其子节点:

  • 第一个:一个相同的副本
  • 随后是修改后的副本,其中一些属性值已更改

这是要更改的摘录:

<Configuration
    Name="Debug|Win32"
    OutputDirectory=".\Debug"
    IntermediateDirectory=".\Debug"
    ATLMinimizesCRunTimeLibraryUsage="FALSE"
    CharacterSet="2">
    <Tool
        Name="VCCLCompilerTool"
        Optimization="0"
        BasicRuntimeChecks="3"
        RuntimeLibrary="1"
        AssemblerListingLocation=".\Debug/"
        ObjectFile=".\Debug/"
        ProgramDataBaseFileName=".\Debug/"
        WarningLevel="4"
        SuppressStartupBanner="TRUE"
        DebugInformationFormat="4"
        CompileAs="0"/>
</Configuration>

在第二个副本中,我需要将所有“调试”更改为“发布”以及一些属性值。

谢谢

4

2 回答 2

5

谢谢科伊诺夫

但是,我找到了使用模板模式的解决方案:

<xsl:template match="Configuration[@Name='Debug|Win32']">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
    <xsl:copy>
        <xsl:attribute name="WholeProgramOptimization">TRUE</xsl:attribute>
        <xsl:apply-templates select="@*|node()" mode="Release"/>
    </xsl:copy>
</xsl:template>

使用此模板的所有属性:

    <xsl:template match="@*" mode="Release">
    <xsl:attribute name="{local-name()}">
        <xsl:call-template name="replace-string">
            <xsl:with-param name="text"     select="."/>
            <xsl:with-param name="replace"  select="'Debug'"/>
            <xsl:with-param name="with"     select="'Release'"/>
        </xsl:call-template>
    </xsl:attribute>
</xsl:template>

当然还有“替换字符串”模板。

再次感谢。

于 2010-03-24T13:35:00.020 回答
2

这是满足您需求的 xslt 转换:

  <xsl:template match="Configuration">
    <xsl:copy-of select="."/>
    <xsl:call-template name="CopyWithReplace">
      <xsl:with-param name="Node" select="."/>
      <xsl:with-param name="PatternToReplace" select="string('Debug')"/>
      <xsl:with-param name="ValueToReplaceWith" select="string('Release')"/>
    </xsl:call-template>
  </xsl:template>

  <xsl:template name="CopyWithReplace">
    <xsl:param name="Node"/>
    <xsl:param name="PatternToReplace"/>
    <xsl:param name="ValueToReplaceWith"/>
    <xsl:variable name="ReplacedNodeName">
      <xsl:call-template name="SearchAndReplace">
        <xsl:with-param name="input" select="name($Node)"/>
        <xsl:with-param name="search-string" select="$PatternToReplace"/>
        <xsl:with-param name="replace-string" select="$ValueToReplaceWith"/>      </xsl:call-template>
    </xsl:variable>
    <xsl:element name="{$ReplacedNodeName}">
      <xsl:for-each select="@*">
        <xsl:variable name="ReplacedAttributeName">
          <xsl:call-template name="SearchAndReplace">
            <xsl:with-param name="input" select="name()"/>
            <xsl:with-param name="search-string" select="$PatternToReplace"/>
            <xsl:with-param name="replace-string" select="$ValueToReplaceWith"/>
          </xsl:call-template>
        </xsl:variable>
        <xsl:variable name="ReplacedAttributeValue">
          <xsl:call-template name="SearchAndReplace">
            <xsl:with-param name="input" select="."/>
            <xsl:with-param name="search-string" select="$PatternToReplace"/>
            <xsl:with-param name="replace-string" select="$ValueToReplaceWith"/>
          </xsl:call-template>
        </xsl:variable>
        <xsl:attribute name="{$ReplacedAttributeName}">
          <xsl:value-of select="$ReplacedAttributeValue"/>
        </xsl:attribute>
      </xsl:for-each>
      <xsl:for-each select="child::*" >
        <xsl:call-template name="CopyWithReplace">
          <xsl:with-param name="Node" select="."/>
          <xsl:with-param name="PatternToReplace" select="$PatternToReplace"/>
          <xsl:with-param name="ValueToReplaceWith" select="$ValueToReplaceWith"/>
        </xsl:call-template>
      </xsl:for-each>
    </xsl:element>
  </xsl:template>

  <xsl:template name="SearchAndReplace">
    <xsl:param name="input"/>
    <xsl:param name="search-string"/>
    <xsl:param name="replace-string"/>
    <xsl:choose>
      <!-- See if the input contains the search string -->
      <xsl:when test="$search-string and contains($input,$search-string)">
        <!-- If so, then concatenate the substring before the search string to the replacement string
          and to the result of recursively applying this template to the remaining substring. -->
        <xsl:value-of select="substring-before($input,$search-string)"/>
        <xsl:value-of select="$replace-string"/>
        <xsl:call-template name="SearchAndReplace">
          <xsl:with-param name="input" select="substring-after($input,$search-string)"/>
          <xsl:with-param name="search-string" select="$search-string"/>
          <xsl:with-param name="replace-string" select="$replace-string"/>
        </xsl:call-template>
      </xsl:when>
      <xsl:otherwise>
        <!-- There are no more occurrences of the search string so just return the current input string -->
        <xsl:value-of select="$input"/>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>   
</xsl:stylesheet>

祝你好运。

于 2010-03-24T13:10:26.623 回答