Skip to content

Instantly share code, notes, and snippets.

@brianpow
Last active December 21, 2016 16:10
Show Gist options
  • Select an option

  • Save brianpow/4b0342234c7463940820 to your computer and use it in GitHub Desktop.

Select an option

Save brianpow/4b0342234c7463940820 to your computer and use it in GitHub Desktop.
Grab email address from text
var data = [];
$(document.body).text().replace(/[\w\.]+@[\w\.]+/g, function(a){if(data.indexOf(a) == -1) data.push(a);});
console.log(data.join(","));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment