以这个XML为例...
<list>
<header>
something
</header>
<main>
<p>
(1) nothing <b>special</b> at all.
</p>
<p>
(1a) and <b>another</b> thing.
</p>
</main>
</list>
应转换为...
<list>
<header>
something
</header>
<aside>
<para nr="(1)">
nothing <u>special</u> at all.
</para>
<para nr="(1a)">
and <u>another</u> thing.
</para>
</aside>
</list>
This Stackoverflow answer was my starting point...
目前,我还没有解决问题的真正方法。我宁愿不引用以前的失败...
答案 0 :(得分:1)
我不记得回答提到的问题,但是我给出的答案就是采取的方法。您只需要实施一个数字规则...
main
转换为aside
p
标签,根据第一个子文本元素中括号中的值,将nr
属性添加到新创建的para
标签中b
元素下的p
标记转换为u
第二个有点棘手,但是可以使用此模板来实现,该模板利用一些字符串操作来提取括号中的数字
<xsl:template match="p">
<para nr="{substring-before(substring-after(text()[1], '('), ')')}">
<xsl:apply-templates select="@*|node()"/>
</para>
</xsl:template>
(还要注意使用Attribute Value Templates来创建属性)
您还需要一个关联的模板才能从第一个文本节点中删除数字
<xsl:template match="p/text()[1]">
<xsl:value-of select="substring-after(., ')')" />
</xsl:template>
尽管将b
转换为u
要容易得多(这是假设b
下的p
个元素只需更改)。
<xsl:template match="p/b">
<u>
<xsl:apply-templates select="@*|node()"/>
</u>
</xsl:template>
会有一个类似的模板,可以将main
更改为aside
尝试使用此XSLT
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" />
<!-- This is the Identity Transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="main">
<aside>
<xsl:apply-templates select="@*|node()"/>
</aside>
</xsl:template>
<xsl:template match="p">
<para nr="{substring-before(substring-after(text()[1], '('), ')')}">
<xsl:apply-templates select="@*|node()"/>
</para>
</xsl:template>
<xsl:template match="p/text()[1]">
<xsl:value-of select="substring-after(., ')')" />
</xsl:template>
<xsl:template match="p/b">
<u>
<xsl:apply-templates select="@*|node()"/>
</u>
</xsl:template>
</xsl:stylesheet>