XML 中的重复节点

发布于 2025-01-04 06:13:03 字数 919 浏览 1 评论 0原文

我想应用 XSL 样式表来删除 xml 中的重复节点。 我测试了一些解决方案,但我做不到:( 我的程序在 Visual C# Studio 中。

我有以下 XML:

<store>

 <laptop>
  <ID>1</ID>
  <price>X2</price>
 </laptop>

 <laptop>
  <ID>2</ID>
  <price>X1</price>
 </laptop>

 <laptop>
  <ID>8</ID>
  <price>X2</price>
 </laptop>

 <laptop>
  <ID>2</ID>
  <price>X3</price>
 </laptop>

</store>

所需的输出是:

    <store>

     <laptop>
      <ID>1</ID>
      <price>X2</price>
     </laptop>

     <laptop>
      <ID>8</ID>
      <price>X2</price>
     </laptop>

     <laptop>
      <ID>2</ID>
      <price>X3</price>
     </laptop>

    </store>

I want to apply a XSL style sheet that delete duplicate nodes in my xml.
I test some solution but i can't do it :( my program is in Visual C# Studio.

I have the following XML:

<store>

 <laptop>
  <ID>1</ID>
  <price>X2</price>
 </laptop>

 <laptop>
  <ID>2</ID>
  <price>X1</price>
 </laptop>

 <laptop>
  <ID>8</ID>
  <price>X2</price>
 </laptop>

 <laptop>
  <ID>2</ID>
  <price>X3</price>
 </laptop>

</store>

The desired output is:

    <store>

     <laptop>
      <ID>1</ID>
      <price>X2</price>
     </laptop>

     <laptop>
      <ID>8</ID>
      <price>X2</price>
     </laptop>

     <laptop>
      <ID>2</ID>
      <price>X3</price>
     </laptop>

    </store>

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

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

发布评论

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

评论(1

朮生 2025-01-11 06:13:03

下面的解决方案满足您的要求,并按以下方式工作:

  1. 第一个模板从根开始并选择所有符合要求的 ID 标签
    下面没有具有相同值的 ID 标签(这就是 ID 2 出现在
    输出结束)
  2. 循环遍历ID节点列表并输出parent()
    欢迎所有的孩子

发表评论,这是我近两年来第一次尝试 XSL。
我尝试了 xsl:copy 但它未能包含子级的标签名称,但值显示了,无法弄清楚为什么!?

摘自其内容:

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

工作代码:

 <xsl:stylesheet 
        xmlns:xs="http://www.w3.org/2001/XMLSchema"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"
        exclude-result-prefixes="xs">

    <xsl:template match="/">
     <store>
     <xsl:variable name="non-duplicates"
     select="//ID[not(.=following::ID)]" />   

     <xsl:for-each select="$non-duplicates">
       <xsl:copy-of select="parent::*"/>
     </xsl:for-each>
     </store>
    </xsl:template>
</xsl:stylesheet>

The solution below does what you are asking for and works the following way:

  1. The first template starts at root and selects all ID tags that does
    not have a ID tag below with the same value (thats why ID 2 comes at
    the end of the output)
  2. Loop through the list of ID nodes and output the parent()
    and all of it's children

Comments are welcome, this is my first try at XSL in the last two years.
I tried a xsl:copy but it failed to include the children's tag names, but the values showed up, couldn't figure out why!?

Taken somewhat out of it's contents:

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

Working code:

 <xsl:stylesheet 
        xmlns:xs="http://www.w3.org/2001/XMLSchema"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"
        exclude-result-prefixes="xs">

    <xsl:template match="/">
     <store>
     <xsl:variable name="non-duplicates"
     select="//ID[not(.=following::ID)]" />   

     <xsl:for-each select="$non-duplicates">
       <xsl:copy-of select="parent::*"/>
     </xsl:for-each>
     </store>
    </xsl:template>
</xsl:stylesheet>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文