Skip to content

Instantly share code, notes, and snippets.

@jackmcdade
Created August 25, 2014 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackmcdade/0768caa59ae15cf2888b to your computer and use it in GitHub Desktop.
Save jackmcdade/0768caa59ae15cf2888b to your computer and use it in GitHub Desktop.
Parse out email addresses
function extractEmailAddresses($string)
{
preg_match_all("/[\._a-zA-Z0-9-]+@[\._a-zA-Z0-9-]+/i", $string, $matches);
return $matches[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment