如何在 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>
我需要newnote
在body标签结束之前创建一个新节点并将节点剪切并粘贴到该note
节点中,并且需要生成一个notenum
节点而不是那个节点note
。
我只需要在p
节点内执行此操作。如果note
低于tabular
,figure
则notegroup
无需执行任何操作。
如果note
包含类似numbered="no"
then 的属性,则无需执行任何操作。
我正在使用以下 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>
提前致谢。