這是我的XML文檔(小片段)。如何根據XSLT 2.0中的子元素檢索特定的XML元素?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
<w:body>
<w:p> <!-- Current Node -->
<w:r>
<w:t>
This is the
</w:t>
</w:r>
<w:r>
<w:pict>
<w:p>
<w:r>
<w:t>
I dont need this
</w:t>
</w:r>
</w:p>
</w:pict>
</w:r>
<w:r>
<w:pict>
<w:p>
<w:r>
<w:t>
I dont need this too
</w:t>
</w:r>
</w:p>
</w:pict>
</w:r>
<w:r>
<w:t>
text that i need to retrieve...
</w:t>
</w:r>
</w:p>
</w:body>
</w:document>
在這裏,我想找回<w:r><w:t>
價值和<w:r>
不應包含在它裏面的孩子<w:pict>
。所以,按我上面的XML文檔我想生成以下的輸出:
<paragraph>This is the text that i need to retrieve...</paragraph>
,這是我的XSLT片段(請告訴我什麼樣的變化這是否XSLT需要得到上面的格式):
<xsl:choose>
<xsl:when test="self::w:p[//w:r/w:t[not(ancestor::w:pict)]]">
<Paragraph>
<xsl:apply-templates select="./w:t[not(ancestor::w:pict)]" />
</Paragraph>
</xsl:when>
</xsl:choose>
<xsl:template match="w:t">
<xsl:value-of select="." />
</xsl:template>
但它不工作...
請指導我擺脫這個問題。
文本「我不需要這種」被包含在一個'',''不包含孩子''。你能再澄清一下你的要求嗎?這聽起來像你需要檢查祖先元素,而不是子元素。 –
2011-12-21 08:41:36
@TimC:是的tim.I想要得到的值,其祖先不等於。 –
Saravanan
2011-12-21 09:03:39