Get system property with system-property() function : system property « XSLT stylesheet « XML Tutorial






File: Data.xml


File: Transform.xslt

<?xml version="1.0"?>
<!-- system-property1.xsl -->
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  <xsl:output method="text"/>

  <xsl:template match="/">
    <xsl:text>&#xA;A test of the system-property() function:</xsl:text>
    <xsl:text>&#xA;&#xA;  xsl:version = "</xsl:text>
    <xsl:value-of select="system-property('xsl:version')"/>
    <xsl:text>"&#xA;</xsl:text>
    <xsl:text>  xsl:vendor = "</xsl:text>
    <xsl:value-of select="system-property('xsl:vendor')"/>
    <xsl:text>"&#xA;</xsl:text>
    <xsl:text>  xsl:vendor-url = "</xsl:text>
    <xsl:value-of select="system-property('xsl:vendor-url')"/>
    <xsl:text>"</xsl:text>
  </xsl:template>

</xsl:stylesheet>

Output:


A test of the system-property() function:

  xsl:version = "2.0"
  xsl:vendor = "SAXON 9.1.0.2 from Saxonica"
  xsl:vendor-url = "http://www.saxonica.com/"








5.75.system property
5.75.1.Get system property with system-property() function
5.75.2.A test of the system-property() function
5.75.3.Getting Java system properties with system-property()