Posted by NurAzije on 10/22/05 15:55
I am trying to write the expression like this, but something seems
wrong:
preg_match_all('/(<|:| |").+@.+\....(>| |")/', $data, $match);
as follows :
(<|:| |") -- < or : or space or "
..+ -- any number of any charecters
@ -- is the @ in the email
..+ -- any number of any charecters
\. -- an escape for the dot
.... -- any three characters
(>| |") -- > or space or "
Any help please
Navigation:
[Reply to this message]
|