Alex Hogan wrote:
> Hi All,
>
> I am trying to identify an email address in a page but I don't want to
> return the email if it's [EMAIL PROTECTED]
>
> Here's what I have;
> (\w[-._\w]*\w(?<!webmaster)@\w[-._\w]*\w\.\w{2,3})
>
> It returns nothing, however when I take out the lookbehind section;
> ([EMAIL PROTECTED],3})
> it works fine, returning all email addresses in a page.
>
> What is wrong with my syntax?

I just tried this out and the first regex is actually working for me on php 4.3.8
(cli).  Can you post some code?

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

Reply via email to