我有一个我认为很简单的问题,但我无法解决它。
我有一个包含多个<p facs="001">text</p>
元素的大型 XML。我想在它们上匹配一个模板,但这会删除我的带有属性的 p 元素,这会导致纯文本。该文件应由“!”标记 并保持<p facs="#">...</p>
. 它还删除了 my 中的一半句子<p>
,这也是我不想要的。
输入:
<root>
<text>
<body>
<div>
<p facs="001">Hello Guys! This is my example! Thanks for your time!</p>
</div>
<div>
<p facs="002">Some more text! And a little more!</p>
</div>
<div>
<p facs="003">Here as well! See you later!</p>
</div>
</body>
</text>
</root>
我的 XSLT
<xsl:stylesheet version="2.0" exclude-result-prefixes="xs"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="@* |node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/root/text/body/div/p">
<xsl:variable name="tokens" select="tokenize(text(),'!')" as="xs:string*"/>
<xsl:variable name="words" select="remove($tokens, 1)" as="xs:string*"/>
<xsl:for-each select="1 to xs:integer(floor(count($words) div 1))">
<xsl:variable name="vIndex" select="(.)" as="xs:integer"/>
<w><xsl:attribute name="n"
select="position()"/>
<xsl:value-of select="normalize-space($words[$vIndex])"/>
</w>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
我的输出:
<root>
<text>
<body>
<div>
<w n="1">This is my example</w>
<w n="2">Thanks for your time</w>
<w n="3"/>
</div>
<div>
<w n="1">And a little more</w>
<w n="2"/>
</div>
<div>
<w n="1">See you later</w>
<w n="2"/>
</div>
</body>
</text>
</root>
我想要输出的内容:
<root>
<text>
<body>
<div>
<p facs="001">
<w n="1">Hello Guys</w>
<w n="2">This is my example</w>
<w n="3">Thanks for your time</w>
</p>
</div>
<div>
<p facs="002">
<w n="1">Some more Text</w>
<w n="2">And a little more</w>
</p>
</div>
<div>
<p facs="003">
<w n="1">Here as well</w>
<w n="2">See you later</w>
</p>
</div>
</body>
</text>
</root>
另外,即使没有必要,我想知道是否有办法保留“!” 我代币化了。我怎样才能保存它们?
简而言之:a)我不想删除我的 facs 属性 b)我不想丢失第一句话 c)我怎样才能保存我标记的字符?在这个例子中“!”
非常感谢!