On Fri, 28 Jan 2005 14:59:29 -0700, <[EMAIL PROTECTED]> wrote:

OK, this is off-topic like every other "regex help" post, but I know some
of you enjoy these puzzles :)

I need a validation regex that will "pass" a string. The string can be no
longer than some maximum length, and it can contain any characters except
two consecutive ampersands (&) anywhere in the string.

I'm stumped - ideas?

TIA

Kirk

if(preg_match("/^([^&]|&(?!&)){1,42}$/",$string)) {

This one will work I think.
Returns false if it finds two consecutive "&" or exceeds 42 chars.


-- Stian

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



Reply via email to