I have more than 2000 email addresses. which i have exported from feedburner. And the email address look like below;
adminvicky@gmail.com Active 12/05
you can easily write a regex and iterate over the results like:
var reg = new RegExp(/^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$/g); var email; while((email = reg.exec(targetText)) !== null) { // do something with the email }