In case anyone is interested, eregi("HTTP/1.[01].302",$output) seems to
work :)

berber

-----Original Message-----
From: Boaz Yahav 
Sent: Tuesday, July 31, 2001 2:03 PM
To: PHP General (E-mail)
Subject: [PHP] Regex question


I'm trying to find if a string exists inside a string. Instead of using
strstr() twice I want to use eregi() once.

What I want to check is if "HTTP/1.1 302" or "HTTP/1.0 302" exists in
some $output.

I'm trying something like : 

eregi("[\"HTTP/1.\"]+[0-1]+[\" 302\"]",$output)
eregi("[HTTP/1.]+[0-1]+[ 302]",$output)
eregi("HTTP/1.+[0-1]+ 302",$output)

But I must be off cause it doesn't work.

Anyone?

thanks


berber

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to