xsl-list
[Top] [All Lists]

Re: [xsl] How to pass an XPath as a param and evaluate it?

2011-06-29 03:46:00
On 29 June 2011 09:31, Florent Georges <lists(_at_)fgeorges(_dot_)org> wrote:
Andrew Welch wrote:

 Hi,

in XSLT 3 it's part of the language so just eval()

 Almost :-)  Actually it is xsl:evaluate, which allows more flexibility: you 
can control the in-scope namespace bindings, the variables in the context, 
the return type, etc.  For instance:

   <xsl:evaluate xpath="'1 + $i'" as="xs:integer">
      <xsl:with-param name="i" select="the/value"/>
   </xsl:evaluate>

Ah thanks Florent.



-- 
Andrew Welch
http://andrewjwelch.com

--~------------------------------------------------------------------
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>
--~--