Need help extracting emails from text file ( Huge file)

thomasvdh

Newbie
Joined
Nov 14, 2017
Messages
15
Reaction score
1
Hey guys,

I have a txt file with over 500k e-mails. I want to extract them but I can't find out how?

Does any1 know a good free tool to do this with? I tried atomic e-mail logger but it's to pricy :/

Hope someone can help me please!
 
download notepad++

the following regexp should do the work:
(\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}\b)
replace with:
\n$1\n
 
download notepad++

the following regexp should do the work:
(\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}\b)
replace with:
\n$1\n
i have no idea how to do that stuff? how do I add that code? :p
 
inside notepad++ go to Search > Find > Replace Tab
Find what: (\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}\b)
Replace with: \n$1\n

Radio button set: Regular expression

Hope now is clearly :-)
 
How big is the file?

Or you can also try to search for tools like MaxProg Email Verifier and Extractor in the downloads section.
thank you will try it out now, see if I can figure it out :)
 
Scrapebox, 20-30 mins, done.

Scrapebox has an email extractor than removes emails from local files. I've used it to grab all the emails from MBOX files (after renaming them to txt). Works like a charm.

Atomic Email Studio also has an extractor for this specific purpose. I bet you can do it with Notepad++ in a pinch though. Good luck!
 
Scrapebox, 20-30 mins, done.

Scrapebox has an email extractor than removes emails from local files. I've used it to grab all the emails from MBOX files (after renaming them to txt). Works like a charm.

Atomic Email Studio also has an extractor for this specific purpose. I bet you can do it with Notepad++ in a pinch though. Good luck!

It worked with notepad ++ thank you everybody for the help :) ! Thread closed
 
Back
Top