What is the efficient way to find email addresses in a big text?
Posted
by salman
on Stack Overflow
See other posts from Stack Overflow
or by salman
Published on 2010-05-12T06:03:38Z
Indexed on
2010/05/12
6:14 UTC
Read the original article
Hit count: 206
I want to extract email addresses from a large text file. what is the best way to do it?
My idea is to find '@' in the text and use Regex to find email address into substring at (for example) 256 chars before this position and length of 512.
© Stack Overflow or respective owner