--- title: EXSLT slug: Web/EXSLT tags: - EXSLT - NeedsTranslation - TopicStub - XSLT - XSLT_Reference translation_of: Web/EXSLT ---
{{ XsltRef() }} EXSLT is a set of extensions to XSLT. There are a number of modules; those that are supported by Firefox are listed below:
exsl
)
math
)
regexp
)
set
)
str
)
To use an EXSLT function, you need to declare the namespace the function is in, and then use the appropriate prefix when calling the function. For example, to use the regular expressions package:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:regexp="http://exslt.org/regular-expressions"> <xsl:template match="/"> ... <xsl:value-of select="regexp:replace(/root/@value, 'before', 'gi', 'AFTER')"/> ... </xsl:template> </xsl:stylesheet>
The EXSLT Common package provides basic functions that expand upon the capabilities of XSLT. The namespace for the Common package is http://exslt.org/common
.
The EXSLT Math package provides functions for working with numeric values and comparing nodes. The namespace for the Math package is http://exslt.org/math
.
The EXSLT Regular Expressions package provides functions that allow testing, matching, and replacing text using JavaScript style regular expressions.
The EXSLT Regular Expressions namespace is http://exslt.org/regular-expressions
.
The EXSLT Sets package offers functions that let you perform set manipulation. The namespace for these functions is http://exslt.org/sets
.
The EXSLT Strings package provides functions that allow the manipulation of strings. The namespace for the Strings package is http://exslt.org/strings
.