xsl-list
[Top] [All Lists]

RE: [xsl] Check the type of an untyped parameter to a 2.0 function

2008-08-20 15:51:16
From: Bordeman, Chris 
[mailto:Chris(_dot_)Bordeman(_at_)wolterskluwer(_dot_)com]
Sent: Wednesday, August 20, 2008 4:44 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] Check the type of an untyped parameter to a 2.0 function

I want my function to accept strings, numbers, floats, etc., but need
to
do different things depending on that type.

How do I detect the type of the parameter, which has NO as="..."
attribute?

Use the XPath 2.0 expression "instance of".

<xsl:param name="foo" as="item()" />

<xsl:if test="$foo instance of xsd:string" />


Andy.


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

<Prev in Thread] Current Thread [Next in Thread>