Re: RegEx help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




On Thu, 14 Apr 2005, Bosky, Dave wrote:

I wanted to create a regex that force a PHP form text field to meet the
following requirements:

a. Must contain an 1 uppercase letter. [A-Z]

b. Must contain 1 digit. [0-9]

c. Must be a minimum of 7 characters in length. {7}


if ( ereg("[A-Z0-9]", $field) && strlen($field) >= 7 ) { print("We have a winner!"); }

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux