在 xslt 中使用 copy-of 时删除 xml:space 属性

发布于 2024-11-27 05:51:18 字数 965 浏览 1 评论 0原文

以下是我的 input.xml 文件中的部分代码:

<info>
<name>
<surname>Sachin</surname>
<x> </x>
<given-names>J</given-names>
</name>
<x>, </x>
<name>
<surname>Sushant</surname>
<x> </x>
<given-names>K</given-names>
</name>
</info>

当我使用 copy-of 元素复制这些节点时

<xsl:copy-of select="info"></xsl:copy-of>

,会生成以下输出:

<info>
<name>
<surname>Sachin</surname>
<x xml:space="preserve"> </x>
<given-names>J</given-names>
</name>
<x xml:space="preserve">, </x>
<name>
<surname>Sushant</surname>
<x xml:space="preserve"> </x>
<given-names>K</given-names>
</name>
</info>

我想删除 xml:我的 output.xml 文件中的 space="preserve"

The following is part of the code in my input.xml file:

<info>
<name>
<surname>Sachin</surname>
<x> </x>
<given-names>J</given-names>
</name>
<x>, </x>
<name>
<surname>Sushant</surname>
<x> </x>
<given-names>K</given-names>
</name>
</info>

When I copy these nodes by using copy-of element as in

<xsl:copy-of select="info"></xsl:copy-of>

then the following output is generated:

<info>
<name>
<surname>Sachin</surname>
<x xml:space="preserve"> </x>
<given-names>J</given-names>
</name>
<x xml:space="preserve">, </x>
<name>
<surname>Sushant</surname>
<x xml:space="preserve"> </x>
<given-names>K</given-names>
</name>
</info>

I want to remove xml:space="preserve" from my output.xml file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄荷→糖丶微凉 2024-12-04 05:51:18

xsl:copy-of 制作精确的副本。如果您想进行任何更改,无论多么小,那么您需要使用“修改的身份模板”编码模式。在这种情况下,以下模板规则应该执行此操作:(

<xsl:template match="*">
  <xsl:copy>
    <xsl:copy-of select="@* except xml:space"/>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>

“ except”运算符是 XPath 2.0 - 如果您坚持使用 1.0,请使用 @*[name() != 'xml:space'])

xsl:copy-of makes an exact copy. If you want to make any changes at all, however small, then you need to use the "modified identity template" coding pattern. In this case, the following template rule should do it:

<xsl:template match="*">
  <xsl:copy>
    <xsl:copy-of select="@* except xml:space"/>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>

(The "except" operator is XPath 2.0 - if you're stuck with 1.0, use @*[name() != 'xml:space'])

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文