2015-10-14 151 views
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> 

謝謝您的幫助:) 米莎

+0

我的願望是刪除completedly REG標籤和它的內容,刪除選擇標籤並刪除原稿 - 標籤,但把它的內容分成w標籤。 – Micha

+0

您的XML格式不正確。您尚未提供預期的輸出。請更新您的問題。 –

回答

0

給出一個形成良好 XML輸入:

<root> 
    <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> 
    </name> 
</root> 

的以下樣式表:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> 
<xsl:strip-space elements="*"/> 

<!-- identity transform --> 
<xsl:template match="@*|node()"> 
    <xsl:copy> 
     <xsl:apply-templates select="@*|node()"/> 
    </xsl:copy> 
</xsl:template> 

<xsl:template match="choice|orig"> 
    <xsl:apply-templates/> 
</xsl:template> 

<xsl:template match="reg"/> 

</xsl:stylesheet> 

將返回:

<?xml version="1.0" encoding="UTF-8"?> 
<root> 
    <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">fyt</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> 
    </name> 
</root> 

注:

  1. choice包裝已被刪除;
  2. orig的內容已成爲祖先w 節點的內容;
  3. 整個reg節點已被抑制。
0

我知道這不是一個答案,但它不能在註釋字段中格式化。

您的XSLT代碼可以改進太多!例如,而不是

<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:template match="w[.//orig]"> 
    <w> 
    <xsl:copy-of select="@*"/> 
    <xsl:apply-templates/> 
    </w> 
</xsl:template>