<HTML>
<HEAD>
<SCRIPT LANGUAGE="JAVASCRIPT" TYPE="text/javascript">
<!-- Begin

// Created and Copyrighted by Benjamin Leow
// Please go to http://www.surf7.net for latest version and more freeware

function copy() {
highlight();
textRange = document.extractor.rawdata.createTextRange();
textRange.execCommand("RemoveFormat");
textRange.execCommand("Copy");
window.alert("The content has been copied to your clipboard.");
}

function highlight(){
document.extractor.rawdata.focus()
document.extractor.rawdata.select()
}

function checksep(value){
if (value) document.extractor.sep.value = "other";
}

function numonly(value){
if (isNaN(value)) {
    window.alert("Please enter a number or else \nleave blank for no grouping.");
    document.extractor.groupby.focus();
}
}

function findEmail() {
var email = "No email address detected";
var a = 0;
var ingroup = 0;
var separator = document.extractor.sep.value;
var groupby = Math.round(document.extractor.groupby.value);

if (separator == "new") separator = "\n";
if (separator == "other") separator = document.extractor.othersep.value;
var rawemail = document.extractor.rawdata.value.match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi);
var norepeat = new Array();
if (rawemail) {
	for (var i=0; i<rawemail.length; i++) 
		rawemail[i] = rawemail[i].toLowerCase();

	for (var i=0; i<rawemail.length; i++) {
		var repeat = 0;
		
		// Check for repeated emails routine
		for (var j=i+1; j<rawemail.length; j++) {
			if (rawemail[i] == rawemail[j]) {
				repeat++;
			}
		}
		
		// Create new array for non-repeated emails
		if (repeat == 0) {
			norepeat[a] = rawemail[i];
			a++;
		}
	}
	if (document.extractor.sort.checked) norepeat = norepeat.sort(); // Sort the array
	email = "";
	// Join emails together with separator
	for (var k = 0; k < norepeat.length; k++) {
		if (ingroup != 0) email += separator;
		email += norepeat[k];
		ingroup++;
		
		// Group emails if a number is specified in form. Each group will be separate by new line.
		if (groupby) {
		    if (ingroup == groupby) {
		        email += '\n\n';
		        ingroup = 0;
		    }
		}
	}
}

// Return array length
var count = norepeat.length;

// Print results
document.extractor.count.value = count;
document.extractor.rawdata.value = email;
}
//  End -->
</SCRIPT>

<STYLE TYPE="text/css">
BODY              { background:#FFF }
BODY,td,th,ul,p   { font: normal normal normal 10pt/1em Verdana; color: #000; }
A:link, A:visited { text-decoration: none; color: #059; }
A:active, A:hover { text-decoration: underline; color: #D14; }
.bordercolor      { background:#666 }
.maincolor        { background:#CCC }
.button           { background:#CCC }
.titlebarcolor    { background:#007 }
.titlefont        { font: normal normal bold 10pt/1em Verdana; color: #FFF; }
.copyrightfont    { font: normal normal normal 7.5pt/1.5em Verdana; color: #666; }
</STYLE>

<TITLE>Email Extractor Lite 1.4</TITLE>
</HEAD>
<BODY>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- automatic size responsive -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-9816945270938969"
     data-ad-slot="1988056019"
     data-ad-format="auto"
     data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<DIV>The emails extracted from here can be directly used in my email program. Duplicated emails will be automatically filtered out during this extraction processing. Note: the original program is, mistakenly, case-sensitive for extracted emails, which is fixed in this version.t</DIV>
<p>This is an advanced email extractor spider tool, which can extract comma separeted emails from outlook mail, yahoo, gmail. This is also called bigbooster email extractor 1.4 software.This advanced spider email extractor requires javascript to work.Please make sure javascript is enabled on your browser.
</p>

<table><tr>
<td valign="top">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- lite14 vertical side -->
<ins class="adsbygoogle"
     style="display:inline-block;width:300px;height:1050px"
     data-ad-client="ca-pub-9816945270938969"
     data-ad-slot="7360199948"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></td>
<td valign="top">
<DIV ALIGN="CENTER">
<FORM NAME="extractor">
<TABLE CLASS="bordercolor" CELLPADDING=1 CELLSPACING=0 BORDER=0><TR><TD>
<TABLE CLASS="maincolor" CELLPADDING=8 CELLSPACING=0 BORDER=0>
<TR CLASS="titlebarcolor"> 
<TD VALIGN="TOP" COLSPAN=2 COLSPAN=2><FONT CLASS="titlefont">Email Extractor Lite 1.4</FONT></TD>
</TR>
<TR>
<TD VALIGN="TOP" ALIGN="CENTER" COLSPAN=2>
<SCRIPT LANGUAGE="JAVASCRIPT">
var introtext = 'Copy text from any source and paste it into here. Then click extract button. You can select different separator (or enter your own), group a number of emails and sort extracted emails alphabetically.';
document.write('<TEXTAREA NAME="rawdata" rows=12 cols=80 onFocus="if (this.value == introtext) this.value = \'\';">' + introtext + '</TEXTAREA>');
</SCRIPT>
</TD></TR>
<TR>
<TD VALIGN="TOP" ALIGN="LEFT" COLSPAN=2>
Separator:
<SELECT NAME="sep">
<OPTION VALUE=", ">Comma</OPTION>
<OPTION VALUE="|">Pipe</OPTION>
<OPTION VALUE=" : ">Colon</OPTION>
<OPTION VALUE="new" selected>New Line</OPTION>
<OPTION VALUE="other">Other</OPTION>
</SELECT>
<INPUT TYPE="TEXT" NAME="othersep" SIZE=3 onBlur="checksep(this.value)">
&nbsp;&nbsp;
Group: <INPUT TYPE="TEXT" SIZE=3 NAME="groupby" onBlur="numonly(this.value)"> Emails
&nbsp;&nbsp;
<LABEL FOR="sortbox"><INPUT TYPE="CHECKBOX" NAME="sort" id="sortbox" checked="checked">Sort Alphabetically</LABEL>
</TD></TR>
<TR VALIGN="TOP"><TD ALIGN="LEFT">
<INPUT TYPE="BUTTON" CLASS="button" VALUE="Extract" onClick="findEmail()"> 
<INPUT TYPE="RESET" CLASS="button" VALUE="Reset">
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
if ((navigator.appName=="Microsoft Internet Explorer")&&(parseInt(navigator.appVersion)>=4)) {
   document.write('<INPUT TYPE="BUTTON" CLASS="button" VALUE="Copy To Clipboard" onClick="copy();">');
} else {
   document.write('<INPUT TYPE="BUTTON" CLASS="button" VALUE="Highlight All" onClick="highlight();">');
}
// -->
</SCRIPT>&nbsp;&nbsp;<a href="https://www.lite14.us/verifyemailaddress/" target="_blank"> Verify Email Address</a>
</TD>
<TD ALIGN="RIGHT" VALIGN="BOTTOM" NOWRAP>
Email count: <INPUT NAME="count" SIZE=5 READONLY>
</TD>
</TR>
</TABLE>
</TD></TR></TABLE>
</FORM>
<center>
<br>
    <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- lite14 billboard -->
<ins class="adsbygoogle"
     style="display:inline-block;width:970px;height:250px"
     data-ad-client="ca-pub-9816945270938969"
     data-ad-slot="2049788932"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<br>
</center>

<BR>
<FONT CLASS="copyrightfont">&copy; 2002 Benjamin Leow - All Right Reserved<BR>Go to Surf7 Network for latest version and more freeware.</FONT> <a href="https://www.lite14.us/" target="_blank"> emailextractor</a>

</DIV>
<p>
<h3>Email Extractor </h3>
</p>

<p>
Email Extractor lite 1.4 is a free freeware online lite1.4 extractor software. It is a powerful and lightweight utility designed to extract email addresses from various sources: local files, websites, search engines, etc. It is a great tool for creating your customer contact list using your mailbox data. A very good extractor 1.4</p>

<p> Email extractor 1.4 is a free big booster extractor lite 1.4 lite program that extract copied emails from address book and from websites. For instance if you have referal downline displayed on your account like this one below, Email extractor lite 1.4 will extract it easily .</p>



            <p align="left">2345 Hansan Smith hansan234@yahoo.com active last login 8/29/2009<br/>



              56765 Peter lite David-9087@msn.com active last login 8/4/2009<br/>

              23175 Gazi Bob Palmer-444@msn.com active last login 8/4/2009<br/>



              123732 Mike Ray gerald98@aol.com active last login 8/5/2009</p>

<p>
Please let us know what you think... Tell us what else you would like to see that would make this site work better for you! We try hard to offer the latest new software tools and resources available.
</p>

<p>
Thanks for supporting this site. We have tried to also provide other tools and that will make your work easy!. I appreciate your support of our site and look forward to your return. we are working on other versions!.
</p>

           


 <center>





<div id="footer">







        <div style="font-size:5px !important;" class="clearer">&nbsp;</div>







        <p id="copyright">&#169; 2009 Heroesimdb.com</p>







        <p id="footernav"> <a href='https://www.heroesimdb.com/'>1.4 lite</a> <span>|</span><a href='https://www.heroesimdb.com/extractor.php'>Free email extractor lite 1.4</a> <span>|</span><a href='https://www.heroesimdb.com/lite1.4.php'>lite 1.4</a><span>|</span> <a href='https://www.heroesimdb.com/privacy2.php'>Privacy</a> <span>|</span>  <a href='https://www.heroesimdb.com/lite16.php'>Lite 1.6</a><span>|</span> <a href='https://www.heroesimdb.com/lite17.php'> Lite 1.7</a></p>




<script type="text/javascript" src="http://www.heroesimdb.com/cookiejs.js"></script>


        <div style="font-size:5px !important;" class="clearer">&nbsp;</div>







    </div>







</div>

</center></td>
<td valign="top">


</td>
</tr>
</table>

<script type="text/javascript">

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");

document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

</script>

<script type="text/javascript">

try {

var pageTracker = _gat._getTracker("UA-4050255-8");

pageTracker._trackPageview();

} catch(err) {}</script>
<script type="text/javascript" src="http://www.heroesimdb.com/cookiejs.js"></script>
</BODY>
</HTML>