xsl-list
[Top] [All Lists]

Re: How to get to the XML Declaration

2005-05-23 14:34:00
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>

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>