Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


RE: [xsl] Processing instruction

From: "Michael Kay" <mike@------------>
To:
Date: 11/1/2007 9:32:00 AM
> So you need to strip the quotes as well.

Which you can do using 

select="translate(substring-after($num, '='), '&quot;', '')"

If you want to handle a more general pseudo-attribute syntax in your
processing instructions, there's a rarely-used extension function 

http://www.saxonica.com/documentation/extensions/functions/getpseudoattribut
e.html

that allows you to do it directly:

<xsl:template match="processing-instruction('docpage')">
  <xsl:processing-instruction name="page">
    <xsl:value-of select="saxon:get-pseudo-attribute('num')"
xmlns:saxon="http://saxon.sf.net/"/>
  </xsl:processing-instruction>
</xsl:template>

Michael Kay
http://www.saxonica.com


> 
> On 01/11/2007, J. S. Rawat <jrawat@xxxxxxxxxxxxxx> wrote:
> > Hi List,
> > Would anybody help me to get the required result.
> >
> > Processor: Saxon.exe
> >
> > INPUT
> > <?docpage num="337"?>
> >
> > REQUIRED OUTPUT
> > <?page 337?>
> >
> > XSLT
> > <xsl:template match="processing-instruction('docpage')">
> >                 <xsl:variable name="num" select="."/>
> >                 <xsl:variable name="num1" 
> select="substring-after($num, '=')"/>
> >                 <xsl:processing-instruction 
> name="page"><xsl:value-of 
> > select="$num1"/></xsl:processing-instruction>
> > </xsl:template>
> >
> > Result of above XSLT is <?page "337"?>
> >
> > thanks
> > ...JSR


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent