i have a large database export from phpmyadmin into text file. i am looking for some kind software can extract all the email into excel or words format thanks advance
Google "extract emails" and try the first link, the software is actually called Extract Emails and should do the job for ya.
can't you just run a perl or php script on the text file? shouldn't take more than a few lines of code.
You can also use a harvest program for massive email databases that will pull the string search of emails. Google it and you will find tons of programs that will extract the emails from the datebase and or file. -Sean serverresponse.com
That's the sort of thing I like using Rebol www.rebol.com for: rebol [] emails: "" bigfile: read %bigfile.txt words: parse/all bigfile " ,;'" foreach word words [ if found? find word "@" [ insert emails join word "," ] ] write %emails.txt emails This is a very simple and unsofisticated script that produces a csv file that you can then load into excel. Quick and dirty but gets the job done.
there are different freeware and shareware programs that can extract emails from any file and even from websites. Try www.download.com to find them out
Export your database to an excel spreadsheet instead of a normal txt file Than open that file in excel and copy the table with all the email addresses in it. Copy past to whatever you want and you're done Didier
Please see the instructions here: Backup: http://www.vbulletin.com/docs/html/maintenance_ssh_backup Restore: http://www.vbulletin.com/docs/html/maintenance_ssh_restore If you don't have telnet or SSH access, some people have reported success with these scripts: MySQLDumper: http://www.mysqldumper.de/en/index.php MySQLHotxcopy: http://www.vbulletin.com/forum/showthread.php?t=134821&highlight=mysqlhotcopy Bigdump: http://www.ozerov.de/bigdump.php