Shaun wrote:
Hi,

Could anyone help me with a reugular expression for a UK mobile phone number?

So far I have tried this but with no success

<snip>
$regexp = "/^447[0-9]{9}$/";
if(!preg_match( $regexp, $_POST[mobile_number] )){
     $error = "Invalid Mobile Number";
</snip>

The number nust be 11 numbers long, be all numbers, have no spaces and begin with 447.

You're matching 447, then 9 numbers after that...bringing the total numbers to 12, not 11.


$regexp = "/^447\d{8}$/";

--
By-Tor.com
It's all about the Rush
http://www.by-tor.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to