如何在一个节点上添加标签文本作为另一个标签的属性..?

发布于 2024-12-15 13:21:24 字数 619 浏览 0 评论 0原文

我有一个 XML 文件,其中包含以下标签。这些是同一 XML 文件中多次使用的部分。手动更换将是一项令人厌烦的工作。

<Ids>
 <Id><No>1</No></Id>
 <Id><No>2</No></Id>
 <Id><No>3</No></Id>
 <Id><No>4</No></Id>
</Ids>

我想将其更改为以下格式 -

<Ids>
 <Id n="1"><No>1</No></Id>
 <Id n="2"><No>2</No></Id>
 <Id n="3"><No>3</No></Id>
 <Id n="4"><No>4</No></Id>
</Ids>

上述标签是 XML 文件的一部分。 XML 文件包含其他各种标签。提前致谢

I have an XML file which has following tags. These are the part of the same XML file which are used number of times. Manual changing would be an tiresome job.

<Ids>
 <Id><No>1</No></Id>
 <Id><No>2</No></Id>
 <Id><No>3</No></Id>
 <Id><No>4</No></Id>
</Ids>

I want to change this to following format -

<Ids>
 <Id n="1"><No>1</No></Id>
 <Id n="2"><No>2</No></Id>
 <Id n="3"><No>3</No></Id>
 <Id n="4"><No>4</No></Id>
</Ids>

The above mentioned tags are part of the XML file. The XML file contains another various tags. Thanks in advance

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

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

发布评论

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

评论(1

救星 2024-12-22 13:21:24

使用:

<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="Id">
    <xsl:copy>
      <xsl:attribute name="n">
        <xsl:value-of select="No"/>
      </xsl:attribute>

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

</xsl:stylesheet>

输入 XML:

<Ids>
  <Id>
    <No>1</No>
  </Id>
  <Id>
    <No>2</No>
  </Id>
  <Id>
    <No>3</No>
  </Id>
  <Id>
    <No>4</No>
  </Id>
</Ids>

输出 XML:

<Ids>
  <Id n="1">
    <No>1</No>
  </Id>
  <Id n="2">
    <No>2</No>
  </Id>
  <Id n="3">
    <No>3</No>
  </Id>
  <Id n="4">
    <No>4</No>
  </Id>
</Ids>

Use:

<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="Id">
    <xsl:copy>
      <xsl:attribute name="n">
        <xsl:value-of select="No"/>
      </xsl:attribute>

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

</xsl:stylesheet>

Input XML:

<Ids>
  <Id>
    <No>1</No>
  </Id>
  <Id>
    <No>2</No>
  </Id>
  <Id>
    <No>3</No>
  </Id>
  <Id>
    <No>4</No>
  </Id>
</Ids>

Output XML:

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