match="processing-instruction()" : processing instruction « XSLT stylesheet « XML






match="processing-instruction()"



File: Data.xml
<?xml-stylesheet href="headlines.css" type="text/css"?>
<verse>text</verse>
<?smellPlugIn scent="newCar" duration="12secs"?>

File: Transform.xslt
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">
  <xsl:output method="xml" omit-xml-declaration="yes" indent="no" />
  
  <xsl:template match="processing-instruction()">
    <xsl:copy />
  </xsl:template>

  
</xsl:stylesheet>
Output:

<?xml-stylesheet scent="newCar" duration="12secs"?>text<?smellPlugIn scent="newCar" duration="12secs"?>

 








Related examples in the same category

1.Generate processing-instruction
2.processing-instruction with xlink
3.match="processing-instruction('xml-stylesheet')"
4.Match processing-instruction()|comment()