Number of function arguments must be the same as the number of parameters.
|
XSLT
<xsl:stylesheet xmlns:my="myFunctions" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" exclude-result-prefixes="my"> <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/> <xsl:function name="my:multiply"> <xsl:param name="a"/> <xsl:param name="b"/> <xsl:value-of select="$a * $b"/> </xsl:function> <xsl:template match="/aaa"> <xsl:value-of select="my:multiply(4,6,8)"/> </xsl:template> </xsl:stylesheet> |
|
|
XML
<aaa/> |
Output
Error:error - XPST0003
XPath syntax error at char C on line L in {my:multiply(4,6,8)}: Cannot find a matching 3-argument function named {myFunctions}multiply() Failed to compile stylesheet. 1 error detected.
|
| Previous chapter: | Variables and Parameters |
| Next chapter: | Comparisons |
| Previous page: | Passing parameters to user-defined functions |
| Next page: | Same function with different number of arguments |