0
我想刪除一個節點,但在祖先節點注入內容。這是XML:XSLT刪除節點,但保留內容
<w lemma="comment2" type="adv." ana="comment">comment</w>
<name ref="roland"><w lemma="roland" type="nom propre" ana="roland">roland</w></name>
<w lemma="faire" type="vindps3" ana="fyt"><choice><orig>fyt</orig><reg>fist</reg></choice></w>
<name ref="yvon de montauban"><w lemma="yvon" type="nom propre" ana="yvon">yvon</w>
<w lemma="de" type="prép" ana="de">de</w>
我的願望是刪除completedly <reg>
和它的內容,刪除標籤<choice>
和刪除標籤<orig>
而是把它的內容到<w>
標籤。有人可以幫幫我嗎 ?
的XSLT現在是這樣的:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="xs" version="2.0">
<xsl:output method="xml"/>
<xsl:template match="*">
<xsl:element name="{local-name()}">
<xsl:for-each select="./@*">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="div">
<xsl:element name="{local-name()}">
<xsl:for-each select="./@*">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="s">
<xsl:element name="{local-name()}">
<xsl:for-each select="./@*">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="name">
<xsl:element name="{local-name()}">
<xsl:for-each select="./@*">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="pb">
<xsl:choose>
<xsl:when test="@ed='bnf'">
<xsl:element name="{local-name()}">
<xsl:for-each select="./@*">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="w">
<xsl:choose>
<xsl:when test="descendant::orig">
<xsl:element name="w">
<xsl:for-each select="./@*">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<xsl:when test="descendant::reg">
<xsl:apply-templates/>
</xsl:when>
<xsl:otherwise>
<xsl:element name="w">
<xsl:for-each select="./@*">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="choice"/>
<xsl:template match="orig">
<xsl:apply-templates select="*" />
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="reg"/>
</xsl:stylesheet>
謝謝您的幫助:) 米莎
我的願望是刪除completedly REG標籤和它的內容,刪除選擇標籤並刪除原稿 - 標籤,但把它的內容分成w標籤。 – Micha
您的XML格式不正確。您尚未提供預期的輸出。請更新您的問題。 –