xsl:evaluate

Allows dynamic evaluation of XPath expressions constructed as a string.

Category: instruction
Content: ( xsl:with-param | xsl:fallback )*
Permitted parent elements: any XSLT element whose content model is sequence-constructor; any literal result element

Attributes

xpath

expression

An XPath expression which is evaluated to return the target expression as a string.

as?

sequence-type

Defines the required type of the result of the XPath expression. Defaults to item()*.

base-uri?

{ uri }

The base URI for the target expression. Defaults to the base URI of the stylesheet instruction.

with-params?

expression

A map used to supply values for variables in the target expression, if the names are only known dynamically.

context-item?

expression

An XPath expression which is evaluated to determine the context item, position, and size, for evaluation of the target expression.

namespace-context?

expression

An expression returning a node; the in-scope namespaces of this node define the namespace context for the XPath expression. Defaults to the namespace context of the xsl:evaluate instruction in the stylesheet.

schema-aware?

{ boolean }

If yes, the XPath expression has access to the schema components imported into the stylesheet.

saxon:options?

expression

May be used to set options specific to the Saxon implementation. The value of the attribute is an expression that evaluates to a map. For details see saxon:options.

Saxon availability

Available in XSLT 3.0. From Saxon 10, available in all editions. Implemented in Saxon-PE and Saxon-EE since Saxon 9.6. Available for all platforms.

Notes on the Saxon implementation

From Saxon 10 this is available in all Saxon editions. In earlier versions, the instruction is recognized in Saxon-HE, but the feature is "statically disabled", which means that an error occurs if the instruction is actually executed.

The instruction has been implemented since Saxon 9.3, originally with the restriction that functions available only in XSLT, such as key(), could not be used in the target XPath expression. The instruction has been fully implemented since Saxon 9.6. The switch to disable the feature (required by the W3C specification) became available in Saxon 9.8. The saxon:options attribute became available in Saxon 9.9.

If you are concerned about security implications of this feature, you can disable it either statically or dynamically, by setting the configuration property DISABLE_XSL_EVALUATE.

Details

The xsl:evaluate instruction allows dynamic evaluation of XPath expressions. (This was previously available using the saxon:evaluate() extension function which was available in Saxon for many years, but dropped in Saxon 12.)

The functionality is available as an XSLT instruction, rather than a function, to allow more flexibility in the syntax, in particular the ability to define parameters using xsl:with-param child elements.

The instruction may take an xsl:fallback to define fallback behaviour when using an XSLT 2.0 (or 1.0) processor.

Examples

Sorting product elements according to a sort key supplied (in the form of an XPath expression) as a parameter to the stylesheet:

<xsl:apply-templates select="product"> <xsl:sort> <xsl:evaluate xpath="$product-sort-key"/> </xsl:sort> </xsl:apply-templates>

Links to W3C specifications

XSLT 3.0 Specification