Chris,

I'm not sure this is exactly what you are after but it may work for you.
This function actually strips non-numeric digits from a passed string

http://www.cflib.org/udf.cfm?ID=433


<cfscript>
/**
 * Returns the passed string with all non-numbers removed (letters,
punctuation, whitespace, etc.).
 * 
 * @param textStr        String containing numbers you want returned. 
 * @param allowDec       Boolean (yes/no) indicating whether to preserve
decimal points.  Default is No. 
 * @return Returns a number. 
 * @author Mark Andrachek ([EMAIL PROTECTED]) 
 * @version 1, December 18, 2001 
 */
function GetNumbers(textstr) {
  if (arraylen(arguments) GTE 2) { 
    return REReplace(textstr,"[^0-9\.]",'','ALL'); }
  else { 
    return REReplace(textstr,"[^0-9]",'','ALL');  }
}
</cfscript>

Ron.
[EMAIL PROTECTED]



-----Original Message-----
From: Chris Stallo [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 19, 2003 9:25 AM
To: [EMAIL PROTECTED]
Subject: [KCFusion] IsNumeric function and hex values?


I've got problem with the IsNumeric function in
ColdFusion.  

I've got a page set up with a form on it.  On the page
this form calls I am doing validation to make sure the
entered value is numeric by using the IsNumeric
function - IsNumeric(form.variable)

If I pass in a value like 74d6, it passes this
validation and when I do an output on the variable
it's coming out as 74,000,000.

Anyone have an idea of why?  Does it have something to
do with the hex value?  If I pass in the value 74a6 it
works fine and the validation fails.

I'm wanting to make sure the form field is a number
and there is no character data in it.  For this
situation I can't use the input to do the validations.

Thanks in advance,

Chris

__________________________________________________
Do you Yahoo!?
Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop!
http://platinum.yahoo.com
 
 
______________________________________________________________________
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives........ http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe.................... mailto:[EMAIL PROTECTED]
To Unsubscribe................ mailto:[EMAIL PROTECTED]
 


______________________________________________________________________
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives........ http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe.................... mailto:[EMAIL PROTECTED]
To Unsubscribe................ mailto:[EMAIL PROTECTED]

Reply via email to