Php Script to extract email address
$b=preg_match_all(”/[a-z0-9]+([_\\.-][a-z0-9]+)*@([a-z0-9]+([\.-][a-z0-9]+)*)+\\.[a-z]{2,}/i”,$file,$c);
echo”
Email Address: ”;
$a1=$c[0];
foreach ($a1 as $b1)
{
echo “
“;
echo $b1;
}
This entry was posted on Monday, July 20th, 2009 at 3:45 pm and is filed under Php. You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.