0

我的样式表中有一个属性的全局匹配,但我想排除 f - 元素。我怎样才能做到这一点?

示例 XML:

<a>
<b formatter="std">...</b>
<c formatter="abc">...</c>
<d formatter="xxx">
    <e formatter="uuu">...</e>
    <f formatter="iii">
        <g formatter="ooo">...</g>
        <h formatter="uuu">...</h>
    </f>
</d>
</a>

当前解决方案:

<xsl:template match="//*[@formatter]">
   ...
</xsl:template>

我已经尝试过这样的事情,但没有奏效。

<xsl:template match="f//*[@formatter]">
...
</xsl:template>

<xsl:template match="//f*[@formatter]">
...
</xsl:template>
4

1 回答 1

3

要么 要么//f[@formatter]f[@formatter]起作用(//没有必要)。当此 XSLT 在您的示例输入上运行时:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>

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

  <xsl:template match="*[@formatter]">
    <xsl:element name="transformed-{local-name()}">
      <xsl:apply-templates select="@* | node()" />
    </xsl:element>
  </xsl:template>

  <xsl:template match="f[@formatter]">
    <xsl:apply-templates select="node()" />
  </xsl:template>
</xsl:stylesheet>

结果是:

<a>
  <transformed-b formatter="std">...</transformed-b>
  <transformed-c formatter="abc">...</transformed-c>
  <transformed-d formatter="xxx">
    <transformed-e formatter="uuu">...</transformed-e>

      <transformed-g formatter="ooo">...</transformed-g>
      <transformed-h formatter="uuu">...</transformed-h>

  </transformed-d>
</a>

如您所见,f被排除在外。这是否回答了您的问题,还是我误解了您想要做什么?

于 2013-03-18T09:48:05.620 回答