[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: How to get to the XML Declaration

Subject: Re: How to get to the XML Declaration
From: James Fuller <jim.fuller@xxxxxxxxxxxxxx>
Date: Mon, 23 May 2005 23:34:00 +0200
Re:  How to get to the XML Declaration
Jesper Tverskov wrote:

>How can I read the values of the attributes of the XML Declaration in the
>input document using XSLT and XPath?
>  
>

something like this will return the value;

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">


    <xsl:template match="/">

        <xsl:variable name="xmlpi"
            select="/processing-instruction('xml-stylesheet')" />
       
       
        <xsl:value-of
            select="substring-before(substring-after($xmlpi, 'href=&quot;'),
            '&quot;')" />
       
       
    </xsl:template>

</xsl:stylesheet>

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.