gpt4 book ai didi

xml - XSLT - 剪切和粘贴

转载 作者:数据小太阳 更新时间:2023-10-29 02:08:59 24 4
gpt4 key购买 nike

如何在xslt中进行剪切和粘贴?假设我的 xml 是这样的,

  <root>
<header>
some nodes
</header>
<body>
<p>
some text
<link>1</link>
<note xml:id="c5-note-0001" numbered="no">text</note>
</p>
<p>
some text
<link>2</link>
<figure>
<note xml:id="c5-note-0003">text</note>
</figure>
<note xml:id="c5-note-0002">text</note>
</p>
<tabular>
<note xml:id="c5-note-0004" numbered="no">text</note>
</tabular>
<p>
some text
<link>3</link>
<notegroup>
<note xml:id="c5-note-0006">text</note>
</notegroup>
<note xml:id="c5-note-0005">text</note>
</p>
<p>
some text
<link>4</link>
<note xml:id="c5-note-0007">text</note>
</p>
</body>
</root>

我的预期输出是,

  <root>
<header>
some nodes
</header>
<body>
<p>
some text
<link>1</link>
<note xml:id="c5-note-0001" numbered="no">text</note>
</p>
<p>
some text
<link>2</link>
<figure>
<note xml:id="c5-note-0003">text</note>
</figure>
<notenum>1</notenum>
</p>
<tabular>
<note xml:id="c5-note-0004" numbered="no">text</note>
</tabular>
<p>
some text
<link>3</link>
<notegroup>
<note xml:id="c5-note-0006">text</note>
</notegroup>
<notenum>2</notenum>
</p>
<p>
some text
<link>4</link>
<notenum>3</notenum>
</p>
<newnote>
<note xml:id="c5-note-0002">text</note>
<note xml:id="c5-note-0005">text</note>
<note xml:id="c5-note-0007">text</note>
</newnote>
</body>
</root>

我需要在 body 标记结束之前创建一个新节点 newnote 并将 note 节点剪切并粘贴到其中,并且需要生成一个 notenum 节点而不是那个 note

我只需要在 p 节点中执行此操作。如果 note 位于 tabularfigurenotegroup 下,则无需执行任何操作。

如果 note 包含类似 numbered="no" 的属性,则无需执行任何操作。

我正在使用以下 xslt(只是为了显示我正在使用的模板匹配),

  <?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
<xsl:output method="xml" indent="yes"/>

<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match ="figure">
some operation
</xsl:template>
<xsl:template match ="tabular">
some operation
</xsl:template>
<xsl:template match ="notegroup">
some operation
</xsl:template>
</xsl:stylesheet>

提前致谢。

最佳答案

一般来说,在 XSLT 中将“剪切和粘贴”想象成实际的样子是有益的,即“复制和粘贴并删除原始内容”。

i need to create a new node newnote before the end of body tag and cut and paste the note node into that

您要做的是调整 <body>元素,因此它在其原始内容(可能以其他方式修改)之后包含一个新的 <newnote>。元素。因此,为 <body> 添加一个新模板元素:

<xsl:template match="body">
</xsl:template>

如前所述,您想基本上接管原始内容。由于原始内容可能仍由其他模板处理,我们将使用 <xsl:apply-tepmlates>这里:

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

在原始内容之后,您想插入新元素:

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

最后,在这个元素中,您需要所有描述的<note> 的副本元素,可以通过 <xsl:for-each> 实现循环:

<xsl:template match="body">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
<newnote>
<xsl:for-each select="p/note[not(@numbered = 'no')]">
<xsl:copy-of select="."/>
</xsl:for-each>
</newnote>
</xsl:template>

and need to generate a notenum node instead of that note.

这可以通过替换相应的 <note> 的模板来完成。元素:

<xsl:template match="p/note[not(@numbered = 'no')]">
<notenum><xsl:value-of select="count(preceding::note[parent::p][not(@numbered = 'no')]) + 1"/></notenum>
</xsl:template>

插入新的 <notenum>元素并使用 <xsl:value-of>命令输出计算值。该值为前面<note>的个数符合您的限制条件的元素加一。

关于xml - XSLT - 剪切和粘贴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11807763/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com