![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.javascript archiveRe: beginner: how to remove dot's and empty spaces from a number
From: <alexey@shtokalo.net>
Date: Mon Jan 23 2006 - 13:58:47 CET
You can do this with using regular expression:
var strNumber = '12.34.56.789';
By the way...
function isNumber(_strValue)
|