I have a field that requires only numbers on one of my forms. Is there a function that would strip out all letters and just leave the numbers?
Thanks!
| SitePoint Sponsor |




I have a field that requires only numbers on one of my forms. Is there a function that would strip out all letters and just leave the numbers?
Thanks!
Convert your dollars into silver coins. www.convert2silver.com
preg_replace would do it with an appropriate pattern.
PHP Code:<?php
preg_replace('~[^0-9]~', null, $string);
?>
@AnthonySterling: I'm a PHP developer, a consultant for oopnorth.com and the organiser of @phpne, a PHP User Group covering the North-East of England.




I tried that and it didn't work. I was still able to fill out the form with the following data:
123 E. Main
Shouldn't the code snip that you provided reduced the string to:
123
Thanks
Rob
Convert your dollars into silver coins. www.convert2silver.com

See http://au.php.net/manual/en/filter.filters.sanitize.php for what filters are available to sanitize input data in PHP and see http://au.php.net/manual/en/filter.e...nitization.php for an example of how to code it.
Stephen J Chapman
javascriptexample.net, Book Reviews, follow me on Twitter
HTML Help, CSS Help, JavaScript Help, PHP/mySQL Help, blog
<input name="html5" type="text" required pattern="^$">
Bookmarks