XSLT / XPath: how to use xsl: apply-templates for all but certain elements

I have the following XML code:

<detaileddescription>
   <para>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum aliquam
   interdum erat, <computeroutput>monospace output</computeroutput> eget rhoncus nunc
   porttitor ut. Ut ac metus sed erat rutrum dignissim.
   <parameterlist kind="param">
       <parameteritem>
           <parameternamelist>
               <parametername>item1</parametername>
           </parameternamelist>
           <parameterdescription>
               <para>Param description.</para>
           </parameterdescription>
        </parameteritem>
    </parameterlist>
    <simplesect kind="return">
        <para>
            <computeroutput>ERR</computeroutput> mattis nunc sed velit ultricies
            volutpat. Suspendisse potenti. Vivamus nec ligula blandit urna lobortis   
            tempus.
        </para>
     </simplesect>
     </para>
 </detaileddescription>

      

I would like to use xsl: apply-templates only for the text node of the child detaileddescription/para

and the element <computeroutput>

that is inside the text node. In other words, I only want to apply templates to the following content:

   Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum aliquam
   interdum erat, <computeroutput>monospace output</computeroutput> eget rhoncus nunc
   porttitor ut. Ut ac metus sed erat rutrum dignissim.

      

Can anyone show me how to do this using XSLT 2.0 and XPath 2.0?

+3


source to share


3 answers


If I understand your question correctly, this should work:

<xsl:apply-templates select="detaileddescription/para/(text()|computeroutput)"/>

      

of course, depending on the context note. Otherwise, you can also specify the appropriate tempate, which will only match the elements you want:



<xsl:template match="detaileddescription/para/(text()|computeroutput)"/>
  <xsl:copy-of select="." /> 
  <!-- or whatever you want to do with it -->
</xsl:template>

      

Hope this helps, R

+2


source


here is one, although probably not the best way to do it. I baked you cake

i created a copy template that copies everything, and the last two templates are stop templates that produce no output.



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

<xsl:template match="detaileddescription">
  <xsl:apply-templates select="para"/>
</xsl:template>

<xsl:template match="para">
    <xsl:apply-templates select="@*|node()"/>
</xsl:template>

<xsl:template match="parameterlist"/>
<xsl:template match="simplesect"/>

      

i edited in the second template: this will remove (or rather not copy) the tag <detaileddescription>

.

+2


source


This transformation :

<xsl:stylesheet version="2.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>

 <xsl:template match="/">
  <xsl:apply-templates select="*/para[1]/(text()|computeroutput)"/>
 </xsl:template>

 <xsl:template match="computeroutput">
  <xsl:sequence select="."/>
 </xsl:template>
</xsl:stylesheet>

      

when applied to the provided XML document :

<detaileddescription>
   <para>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum aliquam
   interdum erat, <computeroutput>monospace output</computeroutput> eget rhoncus nunc
   porttitor ut. Ut ac metus sed erat rutrum dignissim.
   <parameterlist kind="param">
       <parameteritem>
           <parameternamelist>
               <parametername>item1</parametername>
           </parameternamelist>
           <parameterdescription>
               <para>Param description.</para>
           </parameterdescription>
        </parameteritem>
    </parameterlist>
    <simplesect kind="return">
        <para>
            <computeroutput>ERR</computeroutput> mattis nunc sed velit ultricies
            volutpat. Suspendisse potenti. Vivamus nec ligula blandit urna lobortis
            tempus.
        </para>
     </simplesect>
     </para>
 </detaileddescription>

      

processes (applies templates) only the necessary nodes, and for these democultural navel simply copies these nodes to the output :

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum aliquam
   interdum erat, <computeroutput>monospace output</computeroutput> eget rhoncus nunc
   porttitor ut. Ut ac metus sed erat rutrum dignissim.

      

+1


source







All Articles