[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Test For Numeric Values?

Subject: Re: Test For Numeric Values?
From: James Fuller <jim.fuller@xxxxxxxxxxxxxx>
Date: Fri, 08 Apr 2005 07:47:14 +0200
numeric test
Adam J Knight wrote:

>Hi all,
>
>Writing a style sheet and wanting to test a node value to see whether it is
>numeric or not? (Decides HTML align formatting)
>
><xsl:if test=?>
>    <xsl:attribute name="align">right</xsl:attribute> 	
></xsl:if>
>  
>

taking the following example xml and xsl

XML

<?xml version="1.0" encoding="UTF-8"?>
<test test="123">dsfafa</test>


XSL
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml" indent="no"/>
<xsl:template match="/">

Test Element
<xsl:if test="number(test)">
test is a number
</xsl:if>

Test Attribute
<xsl:if test="number(test/@test)">
test attribute is a number
</xsl:if>

</xsl:template>

</xsl:stylesheet>


I have tested both attributes and elements to show you its nothing
special...


gl, Jim Fuller

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.