How to Extract email ids from a note pad

spanner62

BANNED
Joined
Jan 31, 2013
Messages
137
Reaction score
14
I have a Huge email list about 70k list in a notepadBut its in the format [sometext] > [emailid] > [sometext]Anybody have a METHOD to extract this [emailid] field
 
you can read that text file using java or php or ruby or any programming language after that make a regex pattern for emails. Make a for loop to compare every word with regex pattern and store matched pattern in a container. You are done.
 
you can read that text file using java or php or ruby or any programming language after that make a regex pattern for emails. Make a for loop to compare every word with regex pattern and store matched pattern in a container. You are done.


I did it with ease using the url, i mentioned in my previous post
 
Back
Top